Update README.md

This commit is contained in:
Francis 2022-04-10 18:05:39 +08:00 committed by GitHub
parent c1635d0c5c
commit c0077557b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -293,7 +293,7 @@ public:
Apple(int i); Apple(int i);
const int apple_number; const int apple_number;
void take(int num) const; void take(int num) const;
int add(int num); int add();
int add(int num) const; int add(int num) const;
int getCount() const; int getCount() const;
@ -307,9 +307,9 @@ Apple::Apple(int i):apple_number(i)
{ {
} }
int Apple::add(int num){ int Apple::add(){
take(num); take(1);
return num; return 0;
} }
int Apple::add(int num) const{ int Apple::add(int num) const{
take(num); take(num);
@ -322,33 +322,27 @@ void Apple::take(int num) const
int Apple::getCount() const int Apple::getCount() const
{ {
take(1); take(1);
// add(); //error add(); // error
return apple_number; return apple_number;
} }
int main(){ int main(){
Apple a(2); Apple a(2);
cout<<a.getCount()<<endl; cout<<a.getCount()<<endl;
a.add(10); a.add(10);
const Apple b(3);
b.add(100);
return 0; return 0;
} }
``` ```
> 编译: g++ -o main main.cpp apple.cpp<br> > 编译: g++ -o main main.cpp apple.cpp<br>
结果: 此时报错上面getCount()方法中调用了一个add方法而add方法并非const修饰所以运行报错。也就是说const成员函数只能访问const成员函数。
当调用改为:
``` ```
take func 1 const Apple b(3);
2 b.add(); // error
take func 10
take func 100
``` ```
此时可以证明的是const对象只能访问const成员函数。
上面getCount()方法中调用了一个add方法而add方法并非const修饰所以运行报错。也就是说const对象只能访问const成员函数。
而add方法又调用了const修饰的take方法证明了非const对象可以访问任意的成员函数,包括const成员函数。
除此之外我们也看到add的一个重载函数也输出了两个结果说明const对象默认调用const成员函数。
我们除了上述的初始化const常量用初始化列表方式外也可以通过下面方法 我们除了上述的初始化const常量用初始化列表方式外也可以通过下面方法