搜索博文结果-凯发app官方网站

按类别查询搜索结果
关于关键词 的检测结果,共 15277
【c/c 】
| 2021-12-01 10:24:02 | 阅读(50) | 评论(0)
【c/c 】
| 2021-10-20 14:24:12 | 阅读(640) | 评论(0)
    好的程序编写规范是编写高质量程序的保证。清晰、规范的源程序不仅仅是方便阅读,更重要的是能够便于检查错误,提高调试效率,从而最终保证软件的质量和可维护性。本文章适合编程初学者,对于具有一定工程项目开发经验的程序员,建议学习c语言程序代码编写规范—高级版。1 代码书写规范1.1函数定义...
【c/c 】
不熬夜的程序猿 | 2021-10-17 16:02:26 | 阅读(990) | 评论(0)
#include #include void matrix_print(int row, int col, float** mtx);void matrix_mut(int row_a, int col_a, int col_b, float** a, float** b, float** c);void matrix_print(int row, int col, float** mtx){    int r = 0, c = 0;    for (r = 0; r < row; r )&...
【c/c 】
shiyigudong | 2021-10-12 23:51:57 | 阅读(720) | 评论(0)
c qt 静态成员函数 qapplication::exec using typedef 指定别名
【c/c 】
| 2021-09-29 13:04:25 | 阅读(640) | 评论(0)
#include #include #include using namespace std;template void quicksort(t b[], int lo, int hi);template int partition(t b[], int lo, int hi);int main() {    int a[] = {6,5,0,1,34,9,4,4,4,2,-1};    for(int i = ...
【c/c 】
| 2021-09-26 11:27:29 | 阅读(590) | 评论(0)
#include #include using namespace std;int main(){    string str1;    string str2;    int n;    cin>>n;    cin.ignore(80,'\n');    while(n--)    {     getline(cin, str1,'#');  ...
【c/c 】
| 2021-09-24 18:27:39 | 阅读(550) | 评论(0)
#includeusing namespace std;const int maxsize =20;class sqlist{    private:        int date[maxsize]; // 存放顺序表中的元素        int length; // 存放顺序表的长度    public:        sqlist(){length=0;}...
【c/c 】
| 2021-09-24 16:47:06 | 阅读(580) | 评论(0)
#include #include #include #include #include #include std::vector foo( const std::string& str ){    std::vector ret;    std::istringstream is( str );    for( int val; is>>s...
【c/c 】
| 2021-09-22 18:03:47 | 阅读(620) | 评论(0)
#include #include using std::vector;using std::string;using std::cin;using std::cout;int main() {    int n;    cin >> n;    vector s;    string tmp;    for (int i = 0; i < n; i ) { ...
【c/c 】
shiyigudong | 2021-09-16 16:06:08 | 阅读(670) | 评论(0)
本着长到老,学到老的态度,看见这些东西赶紧记录下来。本文是阅读《c安全编码》后的一些记录,主要记录了容易犯错的一些小知识点,包括 字符类型的大小、realloc和alloc a是使用细节、无符号数据溢出、有符号数据求绝对值、char型数值计算等几个小说明。以后有新的知识点再添加。
【c/c 】
| 2021-06-26 16:39:16 | 阅读(1480) | 评论(0)
调用c语言函数前,需要把sp指针设置到栈底,这样c函数里面压栈出栈才能正常使用还有的会初始化bss段 ldr x0, =image$$el3_stacks$$zi$$limit   这里是取的链接器导出的符号,即栈地址点击(此处)折叠或打开//    // that's the last of ...
【c/c 】
stolennnxb | 2021-06-06 10:58:02 | 阅读(1700) | 评论(0)
本文简要介绍了c 编程当中的一些小坑
【c/c 】
stolennnxb | 2021-05-30 21:20:00 | 阅读(1570) | 评论(0)
本文简要介绍了c 当中copy constructor的一些注意事项
【c/c 】
stolennnxb | 2021-05-28 00:13:57 | 阅读(2060) | 评论(0)
本文简要描述了c 中关于默认构造函数的几个知识点
【c/c 】
stolennnxb | 2021-05-17 00:08:55 | 阅读(13140) | 评论(0)
本文简要介绍了c 对象模型
【c/c 】
stolennnxb | 2021-05-09 22:46:53 | 阅读(1710) | 评论(0)
本文简要介绍了c 中实现swap的相关技巧
【c/c 】
| 2021-02-28 15:10:06 | 阅读(0) | 评论(0)
【c/c 】
| 2021-02-26 11:02:47 | 阅读(3670) | 评论(0)
参考资料时间处理往往有以下几种c 11之前/纯c系统调用的使用方式#include #include int main(){time_t t = time(null);printf("time stamp : %lld\n", t);} 获取时间从上面的时间戳中转为tm结构time_t t_ = m...
【c/c 】
stolennnxb | 2021-02-24 10:26:51 | 阅读(1490) | 评论(0)
本文简要介绍了一些c 的const和初始化相关的小坑~
【c/c 】
| 2021-02-19 14:13:39 | 阅读(3170) | 评论(0)
闭包就是能够读取其他函数内部变量的函数。在很多编程语言中都有闭包的概念,譬如:python,js,lua等等python中的闭包上面的outer_func 返回一个函数,而返回的函数拥有了状态,这个状态是outer_func里面的对象。c 11中是如何实现闭包std::function std::bind...
"));
网站地图