📜  这是什么类型的 c++ 代码示例

📅  最后修改于: 2022-03-11 14:44:52.908000             🧑  作者: Mango

代码示例1
class ClassName {
  void foo() {
    // here `this` has `ClassName *` type
  }

  void bar() const {
    // here `this` has `const ClassName *` type
  }
};