因此可以将引用看成是一个自身为const的指针,而const引用则是const Type * const指针。 指向为const的指针是不可以赋值给指向为非const的指针,const引用也不可以赋值给非const引用,但反过来就没有问题了,这也是为了保证const语义不被破坏。 可以用const_cast来去掉某个指针或引用的const性质,或者用static_cast来为某...
classTest{public:voidfun1()const;private:inti;}voidTest::fun1()const{//i++; i不能修改} constexpr constexpr与const一样,它可以应用于变量,不同的是可以应用于函数和类构造函数,constexpr指示值或返回值是常量,并且在可能的情况下,在编译时计算 修饰变量 const和constexpr之间的主要区别在于,const的初始...
constexpr int a = 1 * 2 + 3; // 编译时计算 constexpr int factorial(int n) { // 阶乘 return (n <= 1) ? 1 : n * factorial(n - 1); } constexpr int z = factorial(5); // 编译时计算 namespace 命名空间特别适用于大型项目以防止模块冲突: namespace my_project1 { void func(vo...
编译器错误 C2475“identifier”:重新定义;“constexpr”说明符不匹配 编译器错误 C2477“member”:静态数据成员无法通过派生类初始化 编译器错误 C2478声明与“instance”不兼容 编译器错误 C2479“identifier”:“allocate( )”仅对静态作用域的数据项有效 ...
class Foo{intm_money;public:intget_money() const //✅{returnm_money;}intset_money(intmoney) const //❌{m_money = money; //修改了this->m_money;需去掉函数const修饰}}; 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12.
常量表达式(constexpr) C++11 引入了 constexpr 关键字,允许将变量、函数等声明为常量表达式。常量表达式在编译时就被计算,而不是在运行时,这有助于提高程序的性能。例如: constexpr int getArraySize() {return 32;}int myArray[getArraySize()]; // 使用常量表达式作为数组大小 ...
classMyClass{ staticconstexprintmyFirstVar=rand(); }; 这两种方法都是不正确的。constexpr语义有充分的理由要求它。 inline说明符方法允许我们在头本身中包含静态变量定义,而初始值设定项不是constexpr;或者如果初始值设定项相当复杂,则不必在类定义本身中。
- 常量:代表固定不变的值,类型明确,值不可修改,如整型、浮点数等。const和constexpr都允许在编译时初始化,但constexpr要求必须在编译时计算其值。- #define:预处理器宏,无类型,预编译阶段进行字符替换,可能导致内存浪费和类型安全问题。- const:运行时常量,内存中只有一个拷贝,避免内存分配,...
const int *p = nullptr;//指向整型常量的指针 constexpr int * q = nullptr;//常量指针 1. 2. constexpr会将定义的对象置为顶层const constexpr指针可以指向常量也可以指向非常量 constexpr int *np = nullptr; int j = 0; constexpr int i = 42;//i,j都应定义在所有函数外 ...
template<class T> constexpr TConstExp(T t){returnt; }voidg(){ NotLiteral nl; NotLiteral nl1=ConstExp(nl); constexpr NotLiteral nl2=ConstExp(nl);//无法编译constexprinta=ConstExp(1);//OK} 代码中NotLiteral不是一个定义了常量表达式构造函数的类型,因此不能够声明为常量表达式值。而模板函数Cons...