CPlusPlusThings/learn_class/modern_C++_30/constexpr/test3.cpp
Light-City 1dca8dee82 update
2020-03-03 11:13:16 +08:00

32 lines
553 B
C++

//
// Created by light on 20-1-10.
//
#include <iostream>
class test3 {
public:
int value;
// constexpr const method - can't chanage the values of object fields and can be evaluated at compile time.
constexpr int getvalue() const {
return (value);
}
constexpr test3(int Value)
: value(Value) {
}
};
int main() {
// 加不加都行
constexpr test3 x(100); // OK. Constructor is constexpr.
int array[x.getvalue()]; // OK. x.getvalue() is constexpr and can be evaluated at compile time.
}