c++ 正则表达式

参考: https://www.cnblogs.com/sgdd123/p/7778599.html http://www.cnblogs.com/zery/p/3438845.html http://www.runoob.com/regexp/regexp-syntax.html

jni 学习笔记

jni 用来连接 java 和 c。

c++ 学习笔记

c++ 学习中记录下来的一些要点,方便以后复习。

qt 中使用 c 语言文件

qt 中直接使用 c 语言文件,c 文件可以直接包含,h 文件包含的时候,需要在 c++ 中添加额外信息,如下: #ifdef __cplusplus extern "C" { #include "c头文件.h" #endif #ifdef __cplusplus } #endif