C++ 常量


#include <iostream>
// C++ 有两种定义常量的方式 #define 修饰 const 修饰
//宏常量定义在函数外
#define constant 7;

int main(int argc, const char * argv[]) {
    
    //局部常量,定义在函数内用const修饰
   const int value = 100;
    
    std::cout << "Hello, ALE!\n";
    return 0;
}

  

posted on 2022-10-19 21:49  知了不了了之  阅读(12)  评论(0编辑  收藏  举报