error: ‘path_wts’ does not name a type
活久见的c++语法问题。
对于全局变量,只能初始化,不能赋值。
std::string path_wts;
path_wts = "/data_1/everyday/0419/psenet/psenet0419.wts";
在全局范围内这么写居然编译不过!报错如下:
error: ‘path_wts’ does not name a type
解决:
对于全局变量,只能初始化,不能赋值。
好记性不如烂键盘---点滴、积累、进步!