이 블로그 검색

2023년 3월 18일 토요일

Popular Naming Conventions for Variables: Snake Case, Pascal Case, Camel Case

Snake Case

var snake_case;

The expression style that includes underscores (_) is called snake case, named after the appearance of a snake.

Pascal Case

var PascalCase;

When the first letter and the middle letters are capitalized, it is similar to the notation used in the Pascal language, and it is called the Pascal case.

Camel Case

var camelCase;

When the middle letters are capitalized but the first letter is lowercase, it resembles the shape of a camel, so it is called a camel case.

댓글 없음:

댓글 쓰기

Logic Gate Truth Tables & Definitions

Logic Gate Truth Tables Java Code !A // NOT A&B // AND ~(A&B) // NAND A|B // OR ~(A|B) // XOR A^B // XOR ~(A^B) // XNOR ~A // Inve...