basic_memo 4

test_code 블럭 변경 중

public class WrapperEx { public static void main(String[] args) { // Wrapper Class Integer value = 10;// Wrapper class 타입이라 null 가능 int value2 = 20; // primitive 타입이라 null 불가 // value = null; // value2 = null; System.out.println(value + value2); String s = "123456"; // parse기능 Integer.parseInt() System.out.println(Integer.parseInt(s) + 100); // 특정문자열에서 숫자값을 가져오는 기능 단 s 에 "123456ab"라면 안됨. //데이터 베..

basic_memo 2023.03.29

Git ) Git을 사용하여 협력 - Git 깃허브 Github 사용

*깃 설치 Git- windows- standard 64 - 쭉 next *깃 처음 생성할때 *깃 레포지토리 만들기 Create a new repository private/add areadme file D드라이브에 git_repos - git basehere http://자기깃허브주소/DifficultWoo/helloworld.git https://github.com/DifficultWoo/helloworld.git helloworld생성된거 확인! 다른사람이라면 clear 하고, run 에 입력하라고 뜨면 git에 가서 확인 ------------------------------------------------- git config --global user.email "woohyeonju507@gma..

basic_memo 2023.03.29