1
nếu constexpr - tại sao câu lệnh bị loại bỏ hoàn toàn được kiểm tra?
Tôi đã loay hoay với c ++ 20 consteval trong GCC 10 và đã viết mã này #include <optional> #include <tuple> #include <iostream> template <std::size_t N, typename Predicate, typename Tuple> consteval std::optional<std::size_t> find_if_impl(Predicate&& pred, Tuple&& t) noexcept { constexpr std::size_t I = std::tuple_size_v<std::decay_t<decltype(t)>> - N; if constexpr (N == 0u) …
14
c++
c++20
if-constexpr