注 - 私は初心者で、これが S.Overflow に関する最初の質問です。
私は制限をテストしており、このプログラミング構文のすべてをより明確に理解しようとしています。
これをビルドして実行しようとすると、うまくいきません。クラス名を入力できるのに、なぜオブジェクトを作成するのですか?
#include <iostream>
using namespace std;
class Sayings{
public:
void coolSaying(){
cout << "Preachin to the choir" << endl;
}
};
int main()
{
Sayings.coolSaying();
}