Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これを考えると、C++ 11 で追加された end() 関数は配列の終わりをどのように認識しますか。
私はあなたの質問を理解しているかどうかわかりません...おそらくこのように実装できますか?
namespace std { template<class T, size_t N> T *end(T (&arr)[N]) { return &arr[N]; } }