Visual Assist 한글 주석 빨간줄 제거 방법
2018. 1. 15. 18:14
DevLog/C & C++
Visual Assist 한글 주석 빨간줄 제거 방법 VS실행 -> 메뉴 : VAssisX -> Visual Assist X Options -> Advanced -> Underlines -> Underline spelling errors in comments and strings using 체크해제 -> 확인 한글 주석에 빨간줄이 생성되어 있어서 Productivity Power Tools 이라는 이클립스 처럼 스크롤 바에 에러 위치를 표시해주는 툴과 같이 쓸 때 문제되는 현상이 사라지게 된다.
UE4 C++ 학습자료
2018. 1. 6. 15:48
DevLog/Unreal Engine
언리얼 엔진을 학습하면서 보면 좋은 예제와 영상들 how to load dynamic assets with c++ in ue4 https://www.google.co.kr/search?newwindow=1&q=how+to+load+dynamic+assets+with+c%2B%2B+in+ue4&oq=how+to+load+dynamic+assets+with+c%2B%2B+in+ue4&gs_l=psy-ab.3...5473.27016.0.27313.63.43.12.0.0.0.553.5358.8j1j9j5j0j1.24.0....0...1.1.64.psy-ab..30.1.94...33i21k1.QbQD2AYhQ00 how to load dynamic assets with c++ in ue4 - Google 검색 2..
이스케이프 시퀀스
2017. 12. 26. 12:51
DevLog/C & C++
이스케이프 시퀀스 C++ C++ language 이스케이프 시퀀스는 문자열 내부에 특수한 문자를 정의하는데 사용합니다.다음의 이스케이프 시쿼스를 사용할 수 있습니다:이스케이프 시퀀스! 설명표현\'작은 따옴표byte 0x27\"큰 따옴표byte 0x22\?물음표byte 0x3f\\역슬래시byte 0x5c\0공백문자byte 0x00\a부저음byte 0x07\b백스페이스byte 0x08\f폼피드 - 새페이지byte 0x0c\n라인피드 - 줄바꿈byte 0x0a\r케리지 리턴byte 0x0d\t수평 탭byte 0x09\v수직 탭byte 0x0b\nnn임의의 8진수byte nnn\xnn임의의 16진수byte nn\unnnn임의의 유니코드 값. 몇개의 문자가 될 수 있음.code point U+nnnn\Unnnnn..
execute / executeQuery / executeUpdate 차이
2017. 11. 9. 18:12
Database/MySQL
execute / executeQuery / executeUpdate 차이