forked from Light-City/CPlusPlusThings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstexpr.cpp
More file actions
34 lines (29 loc) · 1022 Bytes
/
constexpr.cpp
File metadata and controls
34 lines (29 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// Created by light on 19-11-4.
//
#include <iostream>
#include <array>
using namespace std;
// 对于修饰Object来说:
// const并未区分出编译期常量和运行期常量
// constexpr限定在了编译期常量
// constexpr作用:优化!效率!
// constexpr修饰的函数,返回值不一定是编译期常量。It is not a bug, it is a feature.
// const修饰的是类型,constexpr修饰的是用来算出值的那段代码。
/**
* constexpr修饰的函数,简单的来说,如果其传入的参数可以在编译时期计算出来,那么这个函数就会产生编译时期的值。
* 但是,传入的参数如果不能在编译时期计算出来,那么constexpr修饰的函数就和普通函数一样了。不
* @param i
* @return
*/
constexpr int foo(int i)
{
return i + 10;
}
int main()
{
int i = 10;
std::array<int, foo(2)> arr; // OK
foo(i); // Call is Ok
std::array<int, foo(i)> arr1; // error: the value of ‘i’ is not usable in a constant expression
}