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++ でクラスの作業を開始したところ、次の 2 つの異なるフィールド宣言が見つかりました。
type ClassName::*var;
と
type *ClassName::var;
それらの違いは何ですか?
編集:もう1つの質問は、次のようにメソッドを宣言できます:
type *ClassName::method_one(...); type ClassName::*method_two(...);
違いはなんですか?