Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设你有几个文件,比如“file1.C”和“file2.C”,那么它们可以被编译成一个名为“myprog”的可执行程序
我注意到在一些教程中使用了以下命令:
g++ file1.C file2.C -o myprog
而其他人:
g++ -o myprog file1.C file2.C
我的问题是这两种形式本质上是一样的吗?哪个更正式?
参数可以是任何顺序。至于哪个更正式——经销商的选择!