タグ付けされた質問 「loop-counter」

13
std :: size_tを使用する場合
std::size_t代わりにforループなどを使用する必要があるのintでしょうか?例えば: #include <cstdint> int main() { for (std::size_t i = 0; i < 10; ++i) { // std::size_t OK here? Or should I use, say, unsigned int instead? } } 一般的に、いつ使用するstd::size_tかに関するベストプラクティスは何ですか?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.