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

头文件中只存放“声明”而不存放“定义”

时间:2018-08-03 14:48:25      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:string   abc   ram   mes   argv   自动   you   报错   风格   

头文件中只存放“声明”而不存放“定义” 在 C++ 语法中,类的成员函数可以在声明的同时被定义,并且自动成为内联函数 。

这虽然会带来书写上的方便,但却造成了风格不一致,弊大于利。建议将成员函数的定 义与声明分开,不论该函数体有多么小。

 1 #include <iostream>
 2 
 3 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 4 using namespace std;
 5 //计算字符串长度的函数
 6 int str_len(const char *string)
 7 {
 8     //char *temp=string; 编译报错!
 9     //*string=‘x‘;       编译报错!
10     int i=0;
11     while (*(string+i)!=NULL) 
12         i++;
13     return i;
14 }
15 //main()函数中测试str_len()
16 int main(int argc, char** argv) {
17     char a[]="ABCDE";
18     cout<<a<<"\t"<<str_len(a)<<endl;
19     char *str="Hello!";
20     cout<<str<<"\t"<<str_len(str)<<endl;
21     cout<<"This is a test."<<"\t"<<str_len("This is a test.")<<endl;
22     return 0;
23 }

 

头文件中只存放“声明”而不存放“定义”

标签:string   abc   ram   mes   argv   自动   you   报错   风格   

原文地址:https://www.cnblogs.com/borter/p/9412924.html

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