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.
この行の*の意味は何ですか?
CourseClass::CourseClass(Professor* professor){ }
この関数は、Professor型のポインタパラメータを受け入れます
関数の引数はポインタ型であると書かれています。
void foo1(int bar) { } // foo1 accepts an integer argument void foo2(int *bar) { } // foo2 accepts an integer pointer.