আমি উপরে উল্লিখিত সংস্করণগুলির মধ্যে কিছু সময়ের তুলনা চালিয়ে যাচ্ছি:
function[0] = 42;
function.insert(std::map<int, int>::value_type(0, 42));
function.insert(std::pair<int, int>(0, 42));
function.insert(std::make_pair(0, 42));
সন্নিবেশিত সংস্করণগুলির মধ্যে সময়ের পার্থক্যটি ক্ষুদ্রতর হয়।
#include <map>
#include <vector>
#include <boost/date_time/posix_time/posix_time.hpp>
using namespace boost::posix_time;
class Widget {
public:
Widget() {
m_vec.resize(100);
for(unsigned long it = 0; it < 100;it++) {
m_vec[it] = 1.0;
}
}
Widget(double el) {
m_vec.resize(100);
for(unsigned long it = 0; it < 100;it++) {
m_vec[it] = el;
}
}
private:
std::vector<double> m_vec;
};
int main(int argc, char* argv[]) {
std::map<int,Widget> map_W;
ptime t1 = boost::posix_time::microsec_clock::local_time();
for(int it = 0; it < 10000;it++) {
map_W.insert(std::pair<int,Widget>(it,Widget(2.0)));
}
ptime t2 = boost::posix_time::microsec_clock::local_time();
time_duration diff = t2 - t1;
std::cout << diff.total_milliseconds() << std::endl;
std::map<int,Widget> map_W_2;
ptime t1_2 = boost::posix_time::microsec_clock::local_time();
for(int it = 0; it < 10000;it++) {
map_W_2.insert(std::make_pair(it,Widget(2.0)));
}
ptime t2_2 = boost::posix_time::microsec_clock::local_time();
time_duration diff_2 = t2_2 - t1_2;
std::cout << diff_2.total_milliseconds() << std::endl;
std::map<int,Widget> map_W_3;
ptime t1_3 = boost::posix_time::microsec_clock::local_time();
for(int it = 0; it < 10000;it++) {
map_W_3[it] = Widget(2.0);
}
ptime t2_3 = boost::posix_time::microsec_clock::local_time();
time_duration diff_3 = t2_3 - t1_3;
std::cout << diff_3.total_milliseconds() << std::endl;
std::map<int,Widget> map_W_0;
ptime t1_0 = boost::posix_time::microsec_clock::local_time();
for(int it = 0; it < 10000;it++) {
map_W_0.insert(std::map<int,Widget>::value_type(it,Widget(2.0)));
}
ptime t2_0 = boost::posix_time::microsec_clock::local_time();
time_duration diff_0 = t2_0 - t1_0;
std::cout << diff_0.total_milliseconds() << std::endl;
system("pause");
}
এটি যথাক্রমে সংস্করণগুলির জন্য দেয় (আমি ফাইলটি 3 বার চালিয়েছি, সুতরাং প্রতিটিটির জন্য পরপর 3 বারের পার্থক্য):
map_W.insert(std::pair<int,Widget>(it,Widget(2.0)));
2198 এমএস, 2078 এমএস, 2072 এমএস
map_W_2.insert(std::make_pair(it,Widget(2.0)));
2290 এমএস, 2037 এমএস, 2046 এমএস
map_W_3[it] = Widget(2.0);
2592 এমএস, 2278 এমএস, 2296 এমএস
map_W_0.insert(std::map<int,Widget>::value_type(it,Widget(2.0)));
2234 এমএস, 2031 এমএস, 2027 এমএস
সুতরাং, বিভিন্ন differentোকানো সংস্করণের মধ্যে ফলাফল উপেক্ষা করা যেতে পারে (যদিও একটি অনুমান পরীক্ষা করা হয়নি)!
map_W_3[it] = Widget(2.0);
সংস্করণ উইজেট জন্য ডিফল্ট কন্সট্রাকটর সঙ্গে একটি আরম্ভের কারণে এই উদাহরণস্বরূপ 10-15% বেশি সময় লাগে।