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.
我对 C++ 编程比较陌生,因此不知道你可以用一个类做多少。但是我想知道是否可以在头文件中创建一个类并在该类中使用 if 语句。
您可以在该类的内联成员函数中使用 if 语句。您不能在函数之外使用 if 语句。(“语句”给出了它。语句只能出现在函数内部。)