https://dong-grae.tistory.com/56
스택 과 힙
Stack일반 지역 변수들은 stack 메모리에 할당된다.지역 변수는 해당 함수가 종료되면, 변수 선언시 할당되었던 메모리가 회수되며 소멸된다. 따라서 사용자가 따로 메모리를 관리해줄 필요가 없
dong-grae.tistory.com
https://dong-grae.tistory.com/57
스마트 포인터
Dangling Pointer 정의 : 이미 해제되었거나 소멸된 주소를 가리키는 포인터 발생 상황:동적으로 할당된 포인터가 해제 되었음에도 해당 포인터를 계속 사용하려고 할 때지역 변수가 Stack메모리에
dong-grae.tistory.com
https://dong-grae.tistory.com/58
템플릿 함수
매개변수의 타입이 다르거나 개수가 다르다면 함수의 이름이 같아도 C++에서는 함수 오버로딩으로 사용할 수 있다. 더보기#include using namespace std;int add(int x, int y){ return x + y;}double add(double x, double
dong-grae.tistory.com
https://dong-grae.tistory.com/61
std::isdigit
*내가 작성한 코드더보기#include #include using namespace std;bool ConditionCheck(string s){ int sLen = s.size(); // 글자수 체크 if(!(sLen == 4 || sLen == 6)) return false; // 숫자로만 구성인지 체크 for(int i = 0; i 다른 사
dong-grae.tistory.com
'내배캠 > TIL' 카테고리의 다른 글
24.12.26 (목) (0) | 2024.12.26 |
---|---|
24.12.25 (수) (1) | 2024.12.25 |
24.12.23 (월) (2) | 2024.12.23 |
24.12.21 (토) (2) | 2024.12.21 |
24.12.20 (금) (0) | 2024.12.20 |