MCPcopy Create free account
hub / github.com/Light-City/CPlusPlusThings / foo

Function foo

cpp2.0/cpp11/constexpr.cpp:21–24  ·  view source on GitHub ↗

对于修饰Object来说: const并未区分出编译期常量和运行期常量 constexpr限定在了编译期常量 constexpr作用:优化!效率! constexpr修饰的函数,返回值不一定是编译期常量。It is not a bug, it is a feature. const修饰的是类型,constexpr修饰的是用来算出值的那段代码。 * constexpr修饰的函数,简单的来说,如果其传入的参数可以在编译时期计算出来,那么这个函数就会产生编译时期的值。 * 但是,传入的参数如果不能在编译时期计算出来,那么constexpr修饰的函数就和普通函数一样了。不 * @param i * @return */

Source from the content-addressed store, hash-verified

source not stored for this graph (policy: none)

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected