.A 파일 확장자
Static Library
| 개발사 | 해당 없음 |
| 인기도 |
3.2 | 105 투표 |
A 파일이란 무엇인가요?
An A file contains a library of functions and headers that may be referenced by a C/C++ source file. It may store only a few functions or may include an entire library of functions, such as a 3D modeling engine. A files are typically created by the GNU ar utility.
추가 정보
A static libraries are more common in Unix-like systems than in Windows systems. In Windows, static libraries typically use the ".lib" extension instead of the ".a" extension.
참고: Using static libraries may result in larger program files, but enables faster loading times compared to dynamic libraries.