如果是调用无参函数,则不能加上“实参”,但括号不能省略。 // 函数的定义void test(){}int main(){ // 函数的调用 test(); // right, 圆括号()不能省略 test(250); // error, 函数定义时没有参数return 0;}