C++
狮子王量化
量化投资
展开
-
【C++】简单说说C++中的多线程
1.代码#include<iostream>#include<thread>#include <mutex>using namespace std;mutex mymutex; //加入锁void thread1(){ unique_lock<mutex> lock(mymutex); for(int i=0;...原创 2020-04-22 12:24:26 · 277 阅读 · 0 评论 -
【C++】一文搞懂C++中的std::是什么
1.C++中的std::是什么?std:: 是个名称空间标示符,C++标准库中的函数或者对象都是在命名空间std中定义的,所以我们要使用标准函数库中的函数或对象都要使用std来限定。标准库在名字空间中被指定为std,所以在使用标准库中的函数或者对象的时候要加上std::,这样编译器就会明白我们调用的函数或者对象是名字空间std中的。2.那么什么是C++标准库呢?C++标...原创 2020-04-22 12:22:34 · 51484 阅读 · 4 评论 -
【C++】数据结构 struct,结构体相关操作
代码:#include <iostream>#include <cstring>using namespace std;struct Book{ char title[50]; char author[50]; double price; int bookId;};void printBook(struct Book bo...原创 2020-04-20 17:28:00 · 523 阅读 · 0 评论 -
【C++】类的继承
代码:#include <iostream>using namespace std;// 基类class Box{ public: void setLength(double l){ length = l; }; void setWidth(double w){ wid...原创 2020-04-20 15:20:22 · 239 阅读 · 0 评论 -
【C++】类和对象
代码:#include <iostream>using namespace std;// 定义类class Box{ public: double length; double width;};//主函数int main(){ Box Box1; Box Box2; double result; ...原创 2020-04-20 15:18:46 · 196 阅读 · 0 评论 -
【C++】数组操作
代码:#include <iostream>using namespace std;//主函数int main(){ // 声明一个数组,这个数组只有长度没有值 int li[10]; // 得到数组的长度 int length = 0; length = sizeof(li) / sizeof(li[0]); // 给数组赋值 ...原创 2020-03-11 12:20:52 · 1230 阅读 · 0 评论 -
【C++】简单的函数
代码:#include <iostream>using namespace std;// 主函数int main(){ int a = 2; int b = 5; // max(a,b)是调用自己声明的max函数 // "\n"换行 cout <<"input:"<< a << " "...原创 2020-03-11 11:34:29 · 463 阅读 · 0 评论