05 2023 档案
摘要:关于系统属性 Framework中系统属性ro、persist、net 1.ro开头的系统属性 如果属性名称以“ro.”开头,那么这个属性被视为只读属性。一旦设置,属性值不能改变。 2.persist开头的系统属性 如果属性名称以“persist.”开头,当设置这个属性时,其值也将写入/data/p
阅读全文
摘要:双链表 队列 doublueList.h #include<stdlib.h> #include<stdio.h> #include<assert.h> #include<stdbool.h> typedef int LTDataType; typedef struct DList { LTData
阅读全文
摘要:gcc_manual 参考 (1)-o 选项:可以指定编译后输出的可执行文件的名称。 如:helloworld.c 编译后指定输出文件名为test,使用方式如下: gcc -o test helloworld.c (2)-c 选项:只编译C语言代码,不进行汇编连接。 如 gcc -c hellowo
阅读全文