728x90

코딩 컨벤션(Coding Convention)이란?

프로그래머 사이에서 약속한 코드 작성 양식이다.

 

코딩 컨벤션(Coding Convention)이 필요한 이유

  • 소프트웨어 개발 비용의 80%는 유지 보수에 쓰인다.
  • 소프트웨어 유지 보수는 직접 개발한 개발자가 하는 경우가 적다.
  • 코드의 가독성을 증진시키고, 여러 명이 협업할 때 일관된 코드 스타일을 유지할 수 있어서 좋다.

 

자바 코딩 컨벤션(Coding Convention)의 종류

 

캠퍼스 핵데이 Java 코딩 컨벤션

중괄호({,}) 는 클래스, 메서드, 제어문의 블럭을 구분한다. 5.1. K&R 스타일로 중괄호 선언 클래스 선언, 메서드 선언, 조건/반복문 등의 코드 블럭을 감싸는 중괄호에 적용되는 규칙이다. 중괄호

naver.github.io

 

Google Java Style Guide

1 Introduction This document serves as the complete definition of Google's coding standards for source code in the Java™ Programming Language. A Java source file is described as being in Google Style if and only if it adheres to the rules herein. Like ot

google.github.io

 

Code Conventions for the Java Programming Language: Contents

We’re sorry. We could not find a match for your search. We suggest you try the following to help find what you’re looking for: Check the spelling of your keyword search. Use synonyms for the keyword you typed, for example, try "application" instead of

www.oracle.com

 

728x90

'2022 하계방학 SW 집중교육' 카테고리의 다른 글

[Java] Interface  (0) 2022.08.15
[Github] 파일 업로드  (0) 2022.08.11
[Java] this  (0) 2022.08.11
[Java] Inheritance  (0) 2022.08.11
[Java] Abstract  (0) 2022.08.11
딩딩크롱