본문 바로가기
728x90
반응형

분류 전체보기273

[Java] 자바 코드 컨벤션 자바 코드 컨벤션이란? 자바 코드 컨벤션은 자바 코드를 작성할 때 일관성을 유지하고 가독성을 높이기 위해 따르는 일련의 규칙이다. 규칙은 프로젝트 팀이나 조직에 따라 다르게 적용된다. 명명 규칙(Naming Conventions) 클래스 이름 : 대문자로 시작하고 명사로 작성. ex) MyClass, Customer 메서드 이름 : 소문자로 시작하고 동사로 작성. ex) getData, setAge 변수 이름 : 소문자로 시작하며, 여러 단어가 있는 경우 camelCase를 사용. ex) firstName, customerList 상수 이름 : 모두 대문자로 작성하며, 단어 간에는 밑줄(_)로 구분. ex) MAX_VALUE, DEFAULT_SIZE 들여쓰기(Indentation) 일반적으로 공백 4개 .. 2023. 3. 20.
프로그래머스 - 직사각형 넓이 구하기 class Solution { public int solution(int[][] dots) { int answer = 0; int minX = dots[0][0]; int minY = dots[0][1]; int maxX = dots[0][0]; int maxY = dots[0][1]; for(int i =1 ; i 2023. 3. 20.
프로그래머스 - 종이 자르기 class Solution { public int solution(int M, int N) { int answer = 0; answer += M-1; answer += (N-1) * M; return answer; } } 2023. 3. 20.
프로그래머스 - 캐릭터의 좌표 class Solution { public int[] solution(String[] keyinput, int[] board) { int[] answer = new int[2]; for(String direction : keyinput){ if(direction.equals("up")){ if(answer[1] -(board[1]-1)/2){ answer[1] += -1; } } else if(direction.equals("right")){ if(answer[0] < (board[0]-1)/2){ answer[0] += 1; } } else if.. 2023. 3. 20.
728x90
반응형