Design mode code comments are changed to English

https://github.com/huihut/interview/pull/73
This commit is contained in:
huihut
2020-12-16 16:07:24 +08:00
parent 8fe5157ae3
commit 3a9e2123aa
21 changed files with 78 additions and 78 deletions

View File

@@ -8,14 +8,14 @@
#include <string>
using std::string;
// 汽车接口
// Car Interface
class ICar
{
public:
virtual string Name() = 0;
};
// 自行车接口
// Bike Interface
class IBike
{
public: