Rumah > Soal Jawab > teks badan
#include <iostream>
#include <string>
using namespace std;
int main()
{
#define NEW_APP_PATH "C:\\QQ\\QQ.exe";
#define VAL_OPEN NEW_APP_PATH.substr(0,NEW_APP_PATH.find_last_of('\\'));
cout<<VAL_OPEN;
getchar();
return 0;
}
用define 为什么会报错?
天蓬老师2017-04-17 11:09:36
NEWAPPPATH.substr NEWAPPPATH为char[]数组,不支持.操作; 可以修改为NEWAPPPATH string("C:\QQ\QQ.exe") 试一下。
黄舟2017-04-17 11:09:36
整个程序都错的离谱,而不光是define的问题了
C++的原生字符串是没有成员函数的
宏定义结尾不要分号
#define NEWAPPPATH std::string("C:\QQ\QQ.exe")
#define VALOPEN NEWAPPPATH.substr(0,NEWAPPPATH.findlast_of('\'))
这样能让编译器勉强执行过去