
c++
文章平均质量分 69
mathilde27
这个作者很懒,什么都没留下…
展开
-
关于C++的连续运算符重载
c++ 重载原创 2022-12-30 11:52:02 · 845 阅读 · 0 评论 -
C++ 引用与拷贝构造函数
Cpp 引用 友元原创 2022-12-29 17:43:01 · 401 阅读 · 0 评论 -
c++学习2
code :newBrain定义dtype#define dtype floattypedef unsigned int uint;typedef unsigned char uchar;typedef struct{ dtype* data; uint b; uint c; uint h; uint w;}BLOB4;在一个结构里面定义原创 2017-09-22 17:26:41 · 316 阅读 · 0 评论 -
c++ 代码学习1
学习代码: https://github.com/mortenpi/detector-schmector安装gsl sudo apt search libgsl sudo apt-get install libgsl-dev g++ test_gsl.cpp -o lala -lgsl -lgslcblas定义类在头文件定义类, 在cpp文件中具体定义定义基类的基本函数函数定义用原创 2017-09-22 15:33:07 · 401 阅读 · 0 评论 -
c++ 学习2
定义类型typedef unsigned int uint;typedef float dtypeBlob 构造函数 引用参数,默认参数 Blob (Blob& blob); Blob (int h,int w, dtype* data=0); Blob data =Blob( 128,128); Blob data =Blob( 3,128,128); Blob data =B原创 2017-09-29 11:43:30 · 349 阅读 · 0 评论