summaryrefslogtreecommitdiffhomepage
path: root/zh-cn
diff options
context:
space:
mode:
authorArnie97 <arnie97@gmail.com>2015-04-17 22:19:13 +0800
committerArnie97 <arnie97@gmail.com>2015-04-17 22:19:13 +0800
commitc5212932b9e7fb2d42eb74049877488678b85967 (patch)
treeb2bad95c7477913da6d69c45b1937450d63df5f1 /zh-cn
parent8f0027683d316d0b614be8841a76453fb4cfb347 (diff)
More bug fixes.
Diffstat (limited to 'zh-cn')
-rw-r--r--zh-cn/c++-cn.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/zh-cn/c++-cn.html.markdown b/zh-cn/c++-cn.html.markdown
index 46a34141..e5c5d5df 100644
--- a/zh-cn/c++-cn.html.markdown
+++ b/zh-cn/c++-cn.html.markdown
@@ -282,7 +282,7 @@ public:
void bark() const { std::cout << name << " barks!\n" }
// 除了构造器以外,C++还提供了析构器。
- // 当一个对象被删除或者脱离其定义域时时,它的析构函数会被调用。
+ // 当一个对象被删除或者脱离其定义域时,它的析构函数会被调用。
// 这使得RAII这样的强大范式(参见下文)成为可能。
// 为了衍生出子类来,基类的析构函数必须定义为虚函数。
virtual ~Dog();
@@ -353,7 +353,7 @@ class OwnedDog : public Dog {
// 重写OwnedDogs类的print方法。
// 如果你不熟悉子类多态的话,可以参考这个页面中的概述:
- // http://en.wikipedia.org/wiki/Polymorphism_(computer_science)#Subtyping
+ // http://zh.wikipedia.org/wiki/%E5%AD%90%E7%B1%BB%E5%9E%8B
// override关键字是可选的,它确保你所重写的是基类中的方法。
void print() const override;