什么时候应该使用std :: size_t? [英] When should I use std::size_t?

查看:1341
本文介绍了什么时候应该使用std :: size_t?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只是想知道我应该使用 std :: size_t 循环和东西,而不是 int
例如:

I'm just wondering should I use std::size_t for loops and stuff instead of int? For instance:

#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

In general, what is the best practice regarding when to use std::size_t?

推荐答案

需要在循环条件中与自然地 std :: size_t 本身进行比较。

A good rule of thumb is for anything that you need to compare in the loop condition against something that is naturally a std::size_t itself.

std :: size_t 是任何 sizeof 表达式的类型,并且保证能够表达任何对象的最大大小包括任何数组)。通过扩展它也保证足够大的任何数组索引,因此它是一个自然类型的循环通过数组的索引。

std::size_t is the type of any sizeof expression and as is guaranteed to be able to express the maximum size of any object (including any array) in C++. By extension it is also guaranteed to be big enough for any array index so it is a natural type for a loop by index over an array.

如果你只是向上计数到一个数字,那么可能更自然的是使用保存该数字的变量类型或 int unsigned int (如果足够大),因为这些应该是机器的自然大小。

If you are just counting up to a number then it may be more natural to use either the type of the variable that holds that number or an int or unsigned int (if large enough) as these should be a natural size for the machine.

这篇关于什么时候应该使用std :: size_t?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆