码迷,mamicode.com
首页 > 其他好文 > 详细

构造函数里加const

时间:2019-04-25 13:15:30      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:strcpy   new   using   必须   n+1   name   har   style   include   

 1 #include <iostream>
 2 using namespace std;
 3 
 4 class MyString{
 5 private:
 6     char * p;
 7     int len;
 8 public:
 9     MyString(const char *s){
10         len = strlen(s);
11         p = new char[len+1];
12         strcpy(p,s);
13     }
14     /*
15     MyString(char *s){
16      len = strlen(s);
17         p = new char[len+1];
18         strcpy(p,s);
19     }
20      */
21 };
22 int main(){
23     MyString s1("aaa");
24     return 0;
25 }

为什么构造函数里必须要加const,猜测是因为"aaa"是一个常量,待解决

构造函数里加const

标签:strcpy   new   using   必须   n+1   name   har   style   include   

原文地址:https://www.cnblogs.com/zzsama/p/10767798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!