2 Star 0 Fork 0

slamdd/cpp-study

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 464 Bytes
一键复制 编辑 原始数据 按行查看 历史
slamdd 提交于 2024-03-22 18:39 +08:00 . add intervie questions
#include <iostream>
#include <sstream>
#include "zero_started.hpp"
#include "thread_usage.hpp"
int main(int argc, char *argv[]) {
std::stringstream ss;
ss << "command line parameters: " << std::endl;
for (int i = 0; i < argc; ++i) {
ss << "\targv[" << i << "]: " << argv[i] << std::endl;
}
std::cout << ss.str() << std::endl;
cpp_study::zero_started::test_promise(argc, argv);
cpp_study::thread_usage::std_thread::test_code();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/slamdd/cpp-study.git
git@gitee.com:slamdd/cpp-study.git
slamdd
cpp-study
cpp-study
master

搜索帮助