*extern1234567source.cppint source_val;void source_func(); main.cppextern int source_val;extern void source_func();cs-static : 불가능-c언어로 작성한 함수 : extern "C"12345source.cvoid function(); main.cpp extern "C" void function(); cs *블록 내의 변수1234567int main(){ { int n = 100; } cout
*헤더 파일(*.h)헤더파일의 중복을 막기 위한 처리123#ifndef ..._H#define#endif ..._Hcs *classclass의 중요 속성 - Data Hiding(접근 제한자)Encapsulation(=>data hiding)inheritancePholymophism(같은 명령어, 다른 방식의 수행) - 오버라이딩 *생성자, 오버로딩, 복사생정사1234567891011121314151617181920212223242526272829303132class Point {public: int x, y; void Print(); Point(); Point(int initialX, int initialY); Point(const Point& pt);};Point::Point(){ x = 0; y =..
*자료형 자료형 크기특징 short2byte -2^15 ~ 2^15-1unsigned short2byte 0 ~ 2^16-1int4byte -2^31 ~ 2^31-1unsigned int4byte 0 ~ 2^32 float4byte float f = 0.5f ; 와 같이 뒤에 f를 써준다. double8byte char1byte wchar_t2byte wchar_t w = L'A'; 와 같이 앞에 L을 써준다. (char) 0 = 48, (char) A = 65, (char) a = 97 * 0.00123 -> 1.23 * 10^-3 -> 1.23 | -3 과 같은 부동소수점 형태로 저장이 되며,정밀도를 잃어버릴 수 있는 단점이 있습니다. * 0이 아닌 모든 값 = true(bool)99 => true,..
- Total
- Today
- Yesterday
- MVVM
- UIView Animation
- Cell Animation
- FEED
- XAML
- Add TapGesture
- BFS
- CustomCollectionViewCell
- 생활코딩
- listview
- Grid
- WPF
- dfs
- 스택
- 문자열
- Custom Cell
- C++
- 객체
- Fakebook
- command
- CollectionView
- DP
- 타일링
- 백준
- BOJ
- 그래프
- 데이터 바인딩
- 백준온라인
- 코딩야학
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |