两道constexpr面试题,拿下就稳了

2023-12-13 14:13:31 浏览数 (1)

constexpr 是 C 中的一个关键字,表示“常量表达式”(constant expression)。它在 C 11 中引入,用于一个函数或变量可以在编译时求值。这允许编译器进行优化,并有可能消除运行时计算,从而产生更高效的代码。

按照往常的惯例,继续更新两道有趣的题目,这两道题目在实际写代码时需要非常注意,你能答对?

1.下面程序运行是否正常?如果正常说明理由,不正常,请说明原因?如果可以,能否用最简单的办法修正下面代码?

代码语言:javascript复制
#include <iostream>

struct Foo {
  static constexpr int x = 42;
};

int f(const int& r) {
  std::cout << r << std::endl;
  return 0;
}

int main() {
  std::cout << Foo::x << std::endl;
  int array[Foo::x] = {0};
  const int& x = Foo::x;
  std::cout << x << std::endl;
  int a;
  std::cin >> a;
  int n = a ? Foo::x : f(Foo::x);
  std::cout << n << ", " << array[0] << std::endl;
}

2.下面程序是否可以正常运行?为什么?

代码语言:javascript复制
struct S {
  static constexpr int x = 42;
};

constexpr int S::x;

0 人点赞