// // Created by liuRuiLong on 2018/6/6. // #ifndef PADDLE_MOBILE_TEST_LIB_SIZE_H #define PADDLE_MOBILE_TEST_LIB_SIZE_H #include //#include //#include //#include //#include //#include //#include //#include //#include //#include //#include //#include //#include #include //#include //#include void foo(){ // char *str = "1234"; // char dst[10]; // strcpy(dst, str); // std::cout << "12345" << std::endl; std::vector vec = {1, 2, 3, 4, 5}; // std::find(vec.begin(), vec.end(), 1); // std::find(vec.begin(), vec.end(), 1); // std::list l; // std::mutex mutex_; // std::map m; // std::unordered_map u_m; // std::unordered_set u_s; // std::string ss = "12345"; // printf("%f", ss.c_str()); // std::initializer_list init_list = {1, 2}; // std::tuple t = {1, 2}; // std::tuple_element>::type // std::tuple<> // int i; // int j; // if (typeid(i) == typeid(j)){ // int z = 10; // } std::shared_ptr s1 = std::make_shared(); // std::stringstream ss; // ss << "12345"; } class test_lib_size { public: test_lib_size(){ } // std::shared_ptr Test(){ // std::vector vec = {1, 2, 3}; // std::shared_ptr si = std::make_shared(); // return si; // } // void test(){ // int i = 9; // } }; #endif //PADDLE_MOBILE_TEST_LIB_SIZE_H