YouTip LogoYouTip

Cpp Standard Library

# C++ Standard Library The C++ Standard Library consists of a set of header files that provide various functionalities and tools, covering input/output, containers, algorithms, multithreading, regular expressions, and more. The C++ Standard Library can be divided into two parts: * **Standard Function Library:** This library is composed of generic, standalone functions that are not part of any class. It is inherited from the C language. * **Object-Oriented Class Library:** This library is a collection of classes and their associated functions. The C++ Standard Library includes all of the C Standard Library, with certain additions and modifications made to support type safety. Here are the main component categories of the C++ Standard Library and their corresponding header file lists: ### Input/Output ### Containers
← Cpp Files StreamsLua Coroutine β†’