Ich weiß, die ursprüngliche Frage ausdrücklich erwähnt C und nicht C++, aber wenn Sie (wie ich) kam hier auf der Suche nach einer Lösung für C++-Arrays, hier ist ein netter Trick:
Wenn Ihr Compiler Folgendes unterstützt Faltausdrücke können Sie Vorlagenmagie verwenden und std::index_sequence
um eine Initialisierungsliste mit dem gewünschten Wert zu erstellen. Und Sie können sogar constexpr
und sich wie ein Chef fühlen:
#include <array>
/// [3]
/// This functions's only purpose is to ignore the index given as the second
/// template argument and to always produce the value passed in.
template<class T, size_t /*ignored*/>
constexpr T identity_func(const T& value) {
return value;
}
/// [2]
/// At this point, we have a list of indices that we can unfold
/// into an initializer list using the `identity_func` above.
template<class T, size_t... Indices>
constexpr std::array<T, sizeof...(Indices)>
make_array_of_impl(const T& value, std::index_sequence<Indices...>) {
return {identity_func<T, Indices>(value)...};
}
/// [1]
/// This is the user-facing function.
/// The template arguments are swapped compared to the order used
/// for std::array, this way we can let the compiler infer the type
/// from the given value but still define it explicitly if we want to.
template<size_t Size, class T>
constexpr std::array<T, Size>
make_array_of(const T& value) {
using Indices = std::make_index_sequence<Size>;
return make_array_of_impl(value, Indices{});
}
// std::array<int, 4>{42, 42, 42, 42}
constexpr auto test_array = make_array_of<4/*, int*/>(42);
static_assert(test_array[0] == 42);
static_assert(test_array[1] == 42);
static_assert(test_array[2] == 42);
static_assert(test_array[3] == 42);
// static_assert(test_array[4] == 42); out of bounds
Sie können einen Blick auf die Code bei der Arbeit (bei Wandbox)