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

注释应当准确、易懂,防止注释有二义性

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

标签:use   put   def   ace   using   3.1   run   argc   语句   

注释应当准确、易懂,防止注释有二义性。错误的注释不但无益反而 有害。

 

 1 #include <iostream>
 2 //以下是几个简单宏替换预处理指令
 3 #define  YES        1
 4 #define  PI         3.1415926
 5 #define  RAD        PI/180
 6 #define  MESG       "This is a string."
 7 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 8 using namespace std;
 9 int main(int argc, char** argv) {
10        //以下各语句使用了宏替换 
11     cout<<"YES="<<YES<<endl;
12     if (YES) 
13        cout<<"PI="<<PI<<endl;
14     cout<<"RAD="<<RAD<<endl;
15     cout<<MESG<<endl;
16     
17     return 0;
18 }

 

注释应当准确、易懂,防止注释有二义性

标签:use   put   def   ace   using   3.1   run   argc   语句   

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

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