파스칼 명명법(NameIs)을 쓸것
//파일이름
#include "Name"
using namespace Name
Using Name
//타입이름(클래스, 구조체, 컴포넌트)
class Cls{}
struct Str{}
function Compon{
return {}
}
//속성
class Cls{
int num;
int Num{
get{ return num; }
set;
}
}
//함수이름
public void Method{
return;
}
카멜 명명법(nameIs)을 쓸것
//변수이름
int num;
str
let arr=[]
취향에 따라 선택
- 메서드: 카멜 명명법을 써도 됨
- 인스턴스: 앞에 I 를 붙여서 확실하게 하는 것도 좋음
- 파일 이름: 카멜 명명법을 써도 됨 -스네이크 표기법(name_is)은 추천안함. 길어짐
Ghost