摘要:
2、为纯虚函数提供定义 1、合法:为纯虚函数提供实现是合法的,目的是为派生类提供默认逻辑。派生类可以选择重写或不重写这个函数。 2、提供保底行为:这种写法在需要提供保底行为的接口设计或减少重复代码的场景中可能非常有用。 struct A { virtual void fun() = 0; };voi 阅读全文
摘要:
github 无法push 代码 1、确保设置了用户名和邮箱 git config --global user.name "mars" git config --global user.email "mars3603@163.com" 2、修改 .git/config 中的url,将https的方式 阅读全文