#include #include using namespace std; class Integer { private: int i; public: Integer(int i) { this->i = i; } int get() { return i; } }; const int MAX = 100000000; int main() { int j = 0; Integer* I = new Integer(0); hrtime_t t_start = gethrtime(); for (int i=0; iget(); } hrtime_t t_end = gethrtime(); cout << (t_end - t_start)/1000000 << " "; }