int stoi(const string& str, size_t *idx=0, int base=10);
long stol(const string& str, size_t *idx=0, int base=10);
unsigned long stoul(const string& str, size_t *idx=0, int base=10);
long long stoll(const string& str, size_t *idx=0, int base=10);
unsigned long long stoull(const string& str, size_t *idx=0, int base=10);
float stof(const string& str, size_t *idx=0);
double stod(const string& str, size_t *idx=0);
long double stold(const string& str, size_t *idx=0);
C++라이브러리
- 숫자 문자열을 숫자로 변환하는 함수. 2019.05.27
- dll 버전으로 사용할 때, stdafx.h 선언해줘야 할 상수값. 2018.08.13
- 메모리 풀 2017.12.08
숫자 문자열을 숫자로 변환하는 함수.
2019. 5. 27. 08:53
dll 버전으로 사용할 때, stdafx.h 선언해줘야 할 상수값.
2018. 8. 13. 11:11
메모리 풀
2017. 12. 8. 09:23
1. OBJECT POOL
- 클래스
정리.
즉, construct / destroy 호출로 구성된다.
construct를 통해 생성자를 호출할 수 있다.
- 일반 자료형,
1. malloc , free를 이용해서 호출하면된다. 클래스에 대해서는 비정상 동작한다.
- 쓰레드 동기화 ??
- 배열에 대해서는 ??
'C++라이브러리 > BOOST' 카테고리의 다른 글
dll 버전으로 사용할 때, stdafx.h 선언해줘야 할 상수값. (0) | 2018.08.13 |
---|