在 C++ 编程中,main() 函数是像 java 中的静态函数还是像 C 中的非静态函数?
In C++ programming, is the main() function static like in java or non-static like in C?
在 C++ 编程中,main()
函数是像 java 中的静态函数还是像 C 语言中的非静态函数?
来自https://timsong-cpp.github.io/cppwp/n3337/basic.start.main#1
A program shall contain a global function called main
, which is the designated start of the program.
它不能是 static
函数。
在 C++ 编程中,main()
函数是像 java 中的静态函数还是像 C 语言中的非静态函数?
来自https://timsong-cpp.github.io/cppwp/n3337/basic.start.main#1
A program shall contain a global function called
main
, which is the designated start of the program.
它不能是 static
函数。