随笔分类 -  C++ STL

C++ stl lib usage
摘要:// std::array is a container that encapsulates fixed size arrays. #include <array> using namespace std; array<int, 100> ref = { 0 }; 阅读全文
posted @ 2022-05-08 22:53 wangshaodong 阅读(133) 评论(0) 推荐(0)