摘要: 参考 https://en.cppreference.com/w/c/variadic https://en.cppreference.com/w/c/language/variadic 参数可变函数 The declaration of a variadic function uses an el 阅读全文
posted @ 2022-01-16 20:14 张志伟122 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 使用npm 建立项目 学习 webpack 配置文件 学习webpack 的 loaders [ vue-loader; babel-loader ] 学习vue 使用webpack 打包vue 源码 https://github.com/zhiwei122126/learn-webpack-vue 阅读全文
posted @ 2022-01-16 19:34 张志伟122 阅读(167) 评论(0) 推荐(0) 编辑
摘要: [转载]C语言中restrict关键字学习 来自:https://blog.csdn.net/llf021421/article/details/8092602 作者:马中马 简介: restrict是c99标准引入的,它只可以用于限定和约束指针,并表明指针是访问一个数据对象的唯一且初始的方式. 即 阅读全文
posted @ 2022-01-09 18:07 张志伟122 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 参考:https://en.cppreference.com/w/c/language/storage_duration storage-class specifier 简介 1、 At most one specifier may be used, except that _Thread_loca 阅读全文
posted @ 2022-01-09 17:47 张志伟122 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 基本表达式 primary expresson primary-expression: generic-selection ( expression ) string-literal constant identifier primary expression 包含 5 中具体实现: identif 阅读全文
posted @ 2022-01-09 13:06 张志伟122 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 程序是一连串的 函数定义(function-definitions)或声明(declarations) 文法: translation-unit: external-declaration translation-unit external-declaration external-declarat 阅读全文
posted @ 2022-01-08 16:59 张志伟122 阅读(349) 评论(0) 推荐(0) 编辑
摘要: linkages of identifiers 标识符的链接 An identifier declared in different scopes or in the same scope more than once can be made to refer to the same object 阅读全文
posted @ 2022-01-07 22:17 张志伟122 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 来源 https://en.cppreference.com/w/c/language/translation_phases Phase 1 阶段 1 字符映射 The individual bytes of the source code file (which is generally a te 阅读全文
posted @ 2022-01-05 21:01 张志伟122 阅读(236) 评论(0) 推荐(0) 编辑
摘要: GCC 编译C代码的相关选项 来自 https://gcc.gnu.org/onlinedocs/gcc/C-Dialect-Options.html#C-Dialect-Options -ansi 1、等同于 -std=c90.[ C++语言,等同于 -std=c++98 ] 2、定义宏 __ST 阅读全文
posted @ 2022-01-03 14:54 张志伟122 阅读(465) 评论(0) 推荐(0) 编辑
摘要: C语言标准 - 从这儿可以得到最新的 http://www.open-std.org/jtc1/sc22/wg14/www/projects ISO publication 版本,需要收费 similar draft 可以直接下载 ISO/IEC 9899 - Revision of the C s 阅读全文
posted @ 2022-01-03 14:42 张志伟122 阅读(300) 评论(0) 推荐(0) 编辑