본문 바로가기 메뉴 바로가기

devbible

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

devbible

검색하기 폼
  • 전체보기 (355)
    • Tips (44)
    • News (32)
    • Event (10)
    • Travel (0)
    • Review (2)
    • Development (265)
    • etc (1)
  • 방명록

전체보기 (355)
[MFC] CString int double 형변환

MFC ※ UniCode // CString -> int convert CString strNum = _T("5"); int nNum = _ttoi(strNum); // int -> CString convert int nNum = 5; CString strNum; strNum.Format(_T("%d"), nNum); // CString -> double CString strNum = _T("5.5"); double nNum = _wtof(strNum); // double -> CString double nNum = 5.5; CString strNum; strNum.Format(_T("%f"), nNum); ※ Multibyte _ttoi -> atoi _wtof -> atof 링크 : http://fr..

Development 2018. 7. 15. 22:40
[Maven] invalid LOC header (bad signature)

Maven에서 어쩌구 저쩌구 zip/jar 파일이 invalid LOC header (bad signature) 오류를 베터낼 떄. Repository 에서 해당 폴더를 삭제 후 다시 시도하면 된다. 이런것쯤은 알아서 해주라고 메이븐... 버릴 떄가 되었나.. [작성] devbible.tistory.com

Development 2018. 5. 10. 01:00
[Java] Read only List (UnModifiableList)

읽기전용으로 List를 생성함. List에 modify 가 일어나면 UnsupportedOperationException 이 발생 List list = new anyList(); // any list (ArrayList, LinkedList other..) list.add(any); List readOnlyList = java.util.Collections.unmodifiableList(list); readOnlyList.get(index); // OK readOnlyList.set(index, any); // throw UnsupportedOperationException readOnlyList.add(any); // throw UnsupportedOperationException readOnlyLis..

Development 2018. 2. 18. 15:07
이전 1 ··· 5 6 7 8 9 10 11 ··· 119 다음
이전 다음
최근에 올라온 글
  • [AOS] Android Emulator x⋯
  • [VSCode] Terminal 버퍼사⋯
  • [Linux] SVN 버전관리 파⋯
  • [Linux] Linux에 최신 Sub⋯
글 보관함
  • 2022/02 (1)
  • 2021/09 (6)
  • 2020/11 (1)
  • 2020/10 (1)
  • 2020/07 (1)
Total
1,644,132
Today
225
Yesterday
85
TAG
  • android
  • MySQL
  • Linux
  • JavaScript
  • dpi
  • svn
  • Shell
  • CentOS
  • dotnet
  • 게임
  • 이벤트
  • Collections
  • 티스토리 초대장
  • WSL
  • vcruntime140.dll
  • ubuntu
  • 게임쿠폰
  • vcomp140.dll
  • MSSQL
  • KitKat
  • ListView
  • redis
  • SharedPreferences
  • Visual Studio 2015
  • Eclipse
  • Spring
  • VisualStudio
  • 쿠폰
  • Java
  • vcamp140.dll
more

Blog is powered by Tistory / Designed by Tistory