码迷,mamicode.com
首页 > 编程语言 > 详细

C++注释

时间:2019-01-29 23:06:10      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:end   turn   ret   函数   pre   界定   不能   str   ...   

1、单行注释(//)

#include <iostream>
int main()
{
    // 定义一个变量
    int a;
    return 0;
}

2、界定符注释(/.../),不能嵌套

#include <iostream>
int main()
{    
    int a = 10;
    int b = 12;
    /*
     * 调用函数
     * 求和
     */
    add(a,b);    
    return 0;
}

3、(#if 0 ... #endif)实现注释,能够嵌套

#include <iostream>
int main()
{   
    #if 0 
    int a = 10;
    int b = 12; 
    #endif
       
    add(10,12);    
    return 0;
}

C++注释

标签:end   turn   ret   函数   pre   界定   不能   str   ...   

原文地址:https://www.cnblogs.com/komean/p/10335972.html

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