multiple types in one definition
求个大佬帮帮我 我知道条件编译、类后没分号,但实在不知道改咋改 把23行后的分号去掉即可改成:
class Ball{
...
} 正经人小王 发表于 2021-7-15 23:25
我知道条件编译、类后没分号,但实在不知道改咋改
。。你都知道类后没分号为啥还不去掉? 正经人小王 发表于 2021-7-15 23:25
我知道条件编译、类后没分号,但实在不知道改咋改
类后没分号 ?
$ cat main.cpp
#include <iostream>
class test_t {
}
int main() {
return 0;
}
$ g++ -g -Wall -o main main.cpp
main.cpp:4:2: error: expected ‘;’ after class definition
4 | }
|^
|;
$ sed -i '4c};' main.cpp
$ cat main.cpp
#include <iostream>
class test_t {
};
int main() {
return 0;
}
$ g++ -g -Wall -o main main.cpp
$
为什么你的#endif 写在最后?
页:
[1]