本文介绍了为什么他们的a =“0”?在方法声明的最后?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么在方法声明结束时他们的= 0?
class GamePiece {public:virtual std :: unique_ptr< gamepiece> clone()const = 0; };
我尝试了什么:
为什么他们是方法声明结束时= 0?
类GamePiece {public:virtual std :: unique_ptr< gamepiece> clone()const = 0; };
why is their a "=0" at the end of the method declaration?
class GamePiece { public: virtual std::unique_ptr<gamepiece> clone() const= 0; };
What I have tried:
why is their a "=0" at the end of the method declaration?
class GamePiece { public: virtual std::unique_ptr<gamepiece> clone() const= 0; };
推荐答案
这篇关于为什么他们的a =“0”?在方法声明的最后?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!