본문 바로가기

Programming

(138)
How to add/insert char in front of string in c++, 스트링 문자 앞에 char문자 캐릭터 추가하는 방법, 예제, example code, java How to add/insert char in front of string in c++, 스트링 문자 앞에 char문자 캐릭터 추가하는 방법, 예제, example code, java There are many things how to append char on string string 에 char 를 덧붙이는 방법은 여러가지가 있다. - using + operator- using push_back function- using append function- using insert function- using resize function But, if you wanna add char to the location you want to, then use insert e.g. on the beginning o..
Simplest way to split string in c++, Split string using stream/iterator, 스페이스 기준 문자열/단어 나누기, c++, java, stl, std Simplest way to split string in c++, Split string using stream/iterator, 스페이스 기준 문자열/단어 나누기, c++, java, stl, std 스페이스를 기준으로 string 을 각 단어별로 나눈다. 첫번째는, 몇단어나 포함된 문자열인지 모를 때, iterator 를 사용하여 시작부터 끝까지 전체를 잘라서 vector 에 넣어준다. 두번째는, 몇단어가 포함된 문자열인지 알 때, for 문에서 반복 횟수를 정해두고 가져온다. 조금 더 보기 간결하다. Split each words on every white space. First solution, if we don't know how many words are in a string text, use..
How to use map in c++ STL, c++ 맵 STL 사용방법/초기화/예제, java, example, sample, library, find, insert, first How to use map in c++ STL, c++ 맵 STL 사용방법/초기화/예제, java, example, sample, library, find, insert, first 간단하게 자주 사용하는 것만 확인해보고 예제를 만들었다. at / find / insert / initialize / erase / begin I checked simple things what i use sometimes, and made example code for find function. - I put the find() sample in example code. - Initialize map map tempMap; - how to put key & value in the map tempMap.insert(pair(..
How to refactoring, 리팩토링 하는 방법, 코드 리팩토링이란? What is code refactoring? / Java/c++/clean code/oop How to refactoring, 리팩토링 하는 방법, 코드 리팩토링이란? What is code refactoring? / Java/c++/clean code/oop 딱 순서를 정해두고 리팩토링을 하지는 않지만, 리팩토링시에 고려할 만한 것들이 이것저것 들어있는 글이라서 해석함끝에선 모호한 표현이 좀 있음 I didn't do refactoring with exact ordering, but it has some considerable things when we refactoring. So i translated.There is kinda grey area in the end of the post Origin ( Here )원문 ( 여기 ) How do I learn refactoring in Jav..
How to use Android Device Monitor in current version of AndroidStudio, 안드로이드 스튜디오 최신버전 디바이스 모니터, java c++ process How to use Android Device Monitor in current version of AndroidStudio, 안드로이드 스튜디오 최신버전 디바이스 모니터, java c++ process Official doc ( Here )공식 문서 ( 여기 ) Android Device Monitor was deprecated in AndroidStudio ver. 3.1 and removed after ver 3.2안드로이드 디바이스 모니터는 3.1 부터 사용권장하지 않게 되었고, 3.2 부터는 사라졌다. 현재 쓰는 것은.. -> 메뉴 -> View -> Tool Windows -> Profiler -> Sessions 에서 + 버튼을 눌러서 동작중인 프로세스를 확인/연결 및 중단 등이 가능하다. ..
How to add DLL / external lib file to VisualStudio, 비주얼스튜디오 외부라이브러리 dll 파일 추가 방법, example, c++ java api How to add DLL / external lib file to VisualStudio, 비주얼스튜디오 외부라이브러리 dll 파일 추가 방법, example, c++ java api 만든 dll 파일을 추가할때도 좋고, 아니면 오픈소스 dll 파일 등을 가져다 쓸때도 쓰이고 To add DLL file you made, or to use open source DLL file ** in x64 과정을 보면, 1. 일단 dll 파일과 header 파일이 있어야 하고, 2. dll 파일로부터 lib 파일을 만들어서 lib 파일도 있는게 좋다. (만드는 방법은 검색해보거나 나중에 올림) 3. 솔루션에서 프로젝트 우클릭 -> 속성(properties) -> C/C++ general -> 추가 디렉토리 (Add..
How to convert Decimal to Hexa, 10진수 숫자 16진수 숫자로 변환/바꾸기, Java c++, example, code How to convert Decimal to Hexa, 10진수 숫자 16진수 숫자로 변환/바꾸기, Java c++, example, code c++ 은 아래 링크 (아직..)( 여기 ) c++ code below (not yet..)( Here ) 자바는 Integer 클래스에 이미 함수가 있다. Code.. lemme see code...코드.. 코드를 보자... String hex = Integer.toHexString(decimalInteger); Something else you might like...? 2019/01/29 - [Programming/Programming Language] - 클린코딩/더 나은 코딩을 하는 10가지 방법, 10 Tips for clean code/ better..
What is Object Oriented Design/Artchitecture? 객체지향 디자인/설계란? java,c++,softwareArchitecture,designPattern What is Object Oriented Design/Artchitecture? 객체지향 디자인/설계란? java,c++,softwareArchitecture,designPattern 원문 ( 여기 )Origin ( Here ) What is Object Oriented Design? (OOD) 객체지향 디자인이란 무엇인가? Object Oriented Design is the concept that forces programmers to plan out their code in order to have a better flowing program. The origins of object oriented design is debated, but the first languages that support..