Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- premake5
- 렌더몽키
- 언리얼
- C++
- 이득우언리얼
- 표창던지기
- 파이썬
- 그림자 효과
- 공부
- 배열문제
- 유니티
- 게임만들기
- 이득우
- 3차원배열
- 화살피하기
- rendermonkey
- c++class
- c#
- 셰이더
- 다중상속
- 화살표 함수
- 화살표 메서드
- visualstudio2022
- uidesign
- IMGUI
- Unity
- swipe
- python
- 비주얼스튜디오
- 가변배열
Archives
- Today
- Total
목록동적배열 (1)
신입 개발자 공부 과정
모르는 부분들 다차원 배열 과 가변배열, 제네릭 리스트 List<T>, 컬렉션Collection
-다차원 배열과 가변배열 Jagged Array and Adjustable Array array of different element size ex) x x x x x x x x x creat instants of Adjustable Array= new int[3][]; Announce to Adjustable Array variables= int[][]arr = new int[3][]; arr null null null to use Adj Array, initilize elements first. ex) arr[0] = new int[3]; arr[1] = new int[2]; arr[2] = new int[4]; or arr[0] = new int[ ] {1,3,5}; //first column ..
C#/수업 내용
2021. 12. 29. 16:26