时间有限,简要记录原理。 快速回忆要点: #if definde(FEATURE_A)#define myfunc _myfunc#endifint myfunc(int a, int b) 场景: 假设某个功能函数针对不同的makefile配置需要有不同的函数名字,通常做法如下: #if definde(FEATURE_A)int myfunc(int a, int b) #
11.1 替换一个word 1. 命令格式 :s/\<the\>/these/g :替换目标字符串前加一个\<,它就会匹配一个word的起始位置,\>可以用来 指示一个word的结束位置. the these the these the these the these the 2. 替换多个文件中的目标