为什么不对现有的实现(例如 libstdc++)进行补充而新开一个 libc++​ libc++官方文档里有这么一段话 After its initial introduction, many people have asked "why start a new library instead of Read More
posted @ 2019-01-12 01:20 findumars Views(239) Comments(0) Diggs(0) Edit
libc++是一个架构在LLVM上的C++标准库。 “libc++” C++ Standard Library​libcxx.llvm.org/ libc++的架构比GCC的libstdc++的架构先进。 因为现在,GCC的代码是杂糅式的,缺乏架构设计。 而LLVM的架构是先进的。 libc++和C Read More
posted @ 2019-01-12 00:36 findumars Views(734) Comments(0) Diggs(0) Edit
C运行时库函数C运行时库函数是指C语言本身支持的一些基本函数,通常是汇编直接实现的。 API函数API函数是操作系统为方便用户设计应用程序而提供的实现特定功能的函数,API函数也是C语言的函数实现的。区别他们之间区别是:API函数是针对操作系统的,C语言运行时函数则是针对C语言本身的。 ·1、运行时 Read More
posted @ 2019-01-12 00:25 findumars Views(455) Comments(0) Diggs(0) Edit