c++相关
c++相关
辣大辣条
这个作者很懒,什么都没留下…
展开
-
c++ 基本知识(一)
c++原创 2023-07-14 17:57:58 · 379 阅读 · 0 评论 -
c++ Primer 全书学习笔记
c++转载 2023-03-10 13:35:12 · 175 阅读 · 0 评论 -
c++ String类常用函数总结
string转载 2022-06-07 19:52:09 · 109 阅读 · 0 评论 -
vscode编写c++代码--详细配置
vscode c++转载 2022-06-07 17:11:39 · 477 阅读 · 0 评论 -
VScode搭建Opencv(C++开发环境)
VScode搭建Opencv(C++开发环境)_河旬的博客-CSDN博客_vscode配置opencv转载 2022-05-31 09:46:51 · 496 阅读 · 0 评论 -
C++中STL用法超详细总结
https://blog.csdn.net/u010183728/article/details/81913729转载 2021-08-13 16:54:17 · 81 阅读 · 0 评论 -
CMake与Make最简单直接的区别
https://blog.csdn.net/weixin_42491857/article/details/80741060转载 2021-01-29 11:17:58 · 214 阅读 · 0 评论 -
ubuntu安装opencv的c++开发环境
https://blog.csdn.net/luanpeng825485697/article/details/81181825转载 2021-01-29 10:05:44 · 111 阅读 · 0 评论 -
Ubuntu运行C++程序
1 使用touch helloworld.cpp创建一个名为helloworld的c++文件2 用ls查看创建文件是否存在3 用vi helloworld.cpp打开文件进行编辑,保持#include<iostream>using namespace std;int main(){ cout<<"hello world"<<endl; return 0;}4 用g++ helloworld.cpp -o helloworld运行原创 2021-01-29 10:05:07 · 251 阅读 · 0 评论