C++中的vector<int>::size_type

vectorlt;intgt;::size_type in C++(C++中的vectorint::size_type)
本文介绍了C++中的vector<int>::size_type的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

这个 C++ 语句是什么意思?

What is meant by this C++ statement?

vector<int>::size_type x;

而且,这里的作用域运算符 :: 有什么用?换句话说,我们如何用英语阅读这个声明?

And, what is the use of the scope operator :: here? In other words, how do we read this statement in English?

例如对于X::x(){...},我们说x()是一个成员函数class X.

For example, for X::x(){...}, we say that x() is a member function of class X.

推荐答案

size_typevector<类型的(静态)成员类型/代码>.通常,它是 std::size_ttypedef,它本身通常是 unsigned inttypedefunsigned long long.

size_type is a (static) member type of the type vector<int>. Usually, it is a typedef for std::size_t, which itself is usually a typedef for unsigned int or unsigned long long.

这篇关于C++中的vector<int>::size_type的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

OpenGL transforming objects with multiple rotations of Different axis(OpenGL 变换不同轴多次旋转的对象)
GLFW first responder error(GLFW 第一响应者错误)
SOIL not linking correctly(SOIL 连接不正确)
Core profile vs version string? Only getting GLSL 1.3/OGL 3.0 in mesa 10.0.1(核心配置文件与版本字符串?在 mesa 10.0.1 中只获得 GLSL 1.3/OGL 3.0)
What is the range of OpenGL texture ID?(OpenGL 纹理 ID 的范围是多少?)
How taxing are OpenGL glDrawElements() calls compared to basic logic code?(与基本逻辑代码相比,OpenGL glDrawElements() 调用的繁重程度如何?)