本文介绍了标准C ++库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 标准C ++库是否真的包含函数 类似于以下java包??? java.io java.lang java.util http://www.cplusplus.com/reference/ 在我看来,标准C ++库有标题来管理 字符串/字符,做I / O,数据结构如Stack,Queue, HashMap,向量,时间,按位运算,异常,迭代器在 收藏......等等b $ b与上面非常相似的非常核心 java软件包 解决方案 是的,C ++是一种非常便携的通用语言,可以在从超级计算机到嵌入式设备的各种平台上运行。很多 这些平台和运行它们的应用程序不需要一直都是这样的,所以对GUI来说没有意义, 网络,线程等都进入标准库。 不,有C ++标准库,包括C标准库。 其他任何东西都是特定于平台的。 有几个跨平台库,广泛使用, 启动是一个。 - Ian Collins。 is it true that Standard C++ Library is pretty much include functionssimilar to the following java packages???java.iojava.langjava.util http://www.cplusplus.com/reference/It seem to me the Standard C++ Library have headers to mainipulatestring / characters, doing I/O, and data structure like Stack, Queue,HashMap, Vector, time, bitwise operation, exception, iterator on acollection ... etcwhich pretty similar to above "very core" java package 解决方案Yes, C++ is a very portable general purpose language that runs onplatforms ranging from super computers to embedded devices. Many ofthese platforms and applications which run on them do not requireeverything all the time, so it doesn''t make sense to stuff GUI,networking, threading, etc. all into the standard library.No, there''s the C++ standard library, which includes the C standard library.Anything else is platform specific.There are several cross-platform libraries that are in widespread use,boot being one.--Ian Collins. 这篇关于标准C ++库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!