gpt4 book ai didi

c++ - 更漂亮的 "pointer to last element"语法,std::vector?

转载 作者:IT老高 更新时间:2023-10-28 21:35:13 25 4
gpt4 key购买 nike

我想知道是否有更漂亮的语法来获取指向 C++ vector 中最后一个元素的普通指针(不是迭代器)

std::vector<int> vec;

int* ptrToLastOne = &(*(vec.end() - 1)) ;

// the other way I could see was
int* ptrToLastOne2 = &vec[ vec.size()-1 ] ;

但是这两个都不是很好看!

最佳答案

int* ptrToLastOne = &vec.back(); // precondition: !vec.empty()

关于c++ - 更漂亮的 "pointer to last element"语法,std::vector?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3651847/

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