字符串限制是什么

字符串限制是什么

本文介绍了STL字符串限制是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

C ++中的标准模板库的字符串限制是什么?

What are the string limits for the Standard Template Library in C++?

推荐答案

#include <iostream>
#include <string>

int main() {
    std::cout << std::string().max_size() << std::endl;
    return 0;
}

这篇关于STL字符串限制是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 21:57