
C语言
文章平均质量分 61
stone8761
这个作者很懒,什么都没留下…
展开
-
C 语言静态库的一些特性总结
一、静态库按 .o 为最小单位连接到程序,如果某个 .o 中的所有符号都没有被引入则这个 .o 不会被连接,反之 .o 中只要有一个符号被引入则链接整个 .o 。可以做一个例子来验证一下。构建一个静态库,包含两个 .c 文件,libtest.c 和 libtest2.c。libtest.c 中包含三个函数:lib_func1()、lib_func2()、lib_func3()。#include <stdio.h>void lib_func1 (void){ ...原创 2022-01-14 19:59:31 · 406 阅读 · 0 评论 -
__attribute__((constructor)) 与__attribute__((destructor)) 的用法
__attribute__((constructor)) 与 __attribute__((destructor)) 是 GCC 中用来修饰函数的,constructor 可以使被修饰的函数在 main() 执行前被调用,destructor 可以使被修饰的函数在 main() 执行结束或 exit() 调用结束后被执行。__attribute__((constructor)) void constructor_func() { // ...}__attribute__(...原创 2022-01-14 16:55:54 · 2243 阅读 · 0 评论 -
Volatile的陷阱(转)
最近写的关于在嵌入式开发中常遇到的关于volatile关键字使用的短文,都是些通用的技术,贴上来share。 对于volatile关键字,大部分的C语言教材都是一笔带过,并没有做太过深入的分析,所以这里简单整理了一些关于volatile的使用注意事项。实际上从语法上来看volatile和const是一样的,但是如果const用错,几乎不会有什么问题;而volatile用错,后果可能很严重。所以转载 2014-04-09 17:59:53 · 690 阅读 · 0 评论 -
C语言结构体初始化的三种方法
直接上示例了#include struct student_st{ char c; int score; const char *name;};static void show_student(struct student_st *stu){ printf("c = %c, score = %d, name = %s\n", stu->c, stu->score, s转载 2015-12-17 11:12:59 · 16606 阅读 · 2 评论 -
时间与字符串相互转化
使用strptime、strftime进行时间字符串与时间结构struct tm之间的转换 struct tm { int tm_sec; /* Seconds (0-60) */ int tm_min; /* Minutes (0-59) */ int tm_hou原创 2017-05-23 16:00:25 · 1158 阅读 · 0 评论 -
C语言-可变参数列表
在C语言中,我们可以实现同一个函数在不同的时候接受不同数目和类型的参数,即实现printf的参数效果。相关类型、函数:#include void va_start(va_list ap, last);type va_arg(va_list ap, type);void va_end(va_list ap);实现流程:1)定义va_list类型变量原创 2017-07-24 14:41:09 · 361 阅读 · 0 评论