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.
を持っている多くの小さな cpp ファイルを調べて、int main()1 回の実行でそのうちの 1 つだけを実行したいと考えています。このようなもの -
int main()
cpp ファイルごとに新しいプロジェクトを開かずにそれを行う方法はありますか?
main()いいえ。プロジェクトでは、複数の機能を持つことはできません。
main()
それらの名前をtest1()、test2()、に変更し、test3()から 1 つずつ呼び出すことができmain()ます。それが私が通常していることです。
test1()
test2()
test3()
ファイルをコンパイルしないことを選択できます。プロパティに移動し、ファイルをビルドから除外します。