gpt4 book ai didi

c++ - size_type 和 int 之间的区别

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:59:36 28 4
gpt4 key购买 nike

#include <iostream>
#include <vector>
using namespace std;

int main()
{
vector<double> student_marks(20);

for (vector<double>::size_type i = 0; i < 20; i++)
{
cout << "Enter marks for student #" << i+1
<< ": " << flush;
cin >> student_marks[i];
}
return 0;
}

我在某处读到,最好使用 size_type 代替 int 。它真的会对实现产生巨大影响吗?使用 size_type 有什么好处?

最佳答案

vector<double>::size_type保证涵盖 vector<double> 大小的所有可能值范围.一个int不是。

请注意 vector<double>::size_type通常与 std::size_t 相同,所以一般来说使用后者就可以了。但是,自定义分配器可能会导致 vector 带有 size_type。不同于 std::size_t .

关于c++ - size_type 和 int 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22437175/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com