https://google.github.io/styleguide/cppguide.html
Google C++ Style Guide
Google C++ Style Guide Background C++ is one of the main development languages used by many of Google's open-source projects. As every C++ programmer knows, the language has many powerful features, but this power brings with it complexity, which in turn ca
google.github.io
The names of variables (including function parameters) and data members are all lowercase, with underscores between words. Data members of classes (but not structs) additionally have trailing underscores. For instance: a_local_variable, a_struct_data_member, a_class_data_member_.
https://www.oracle.com/java/technologies/javase/codeconventions-contents.html
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
Variable names should be short yet meaningful.
One-character variable names should be avoided except for temporary "throwaway" variables.
Common names for temporary variables are i, j, k, m, and n for integers; c, d, and e for characters.
내 스타일은
std::string table_name; // OK - lowercase with underscore.
std::string tableName; // Bad - mixed case.
그래도 하다보면 내 맘대로. ㅋ
'재개발' 카테고리의 다른 글
| 코딩 스타트 (0) | 2022.11.27 |
|---|---|
| TextField, TextFormField (0) | 2022.11.27 |
| BW cal. 시나리오 수정 (0) | 2022.11.25 |
| 어플 #1 디자인 (0) | 2022.11.19 |
| 재개발 어플 #1 개요 (0) | 2022.11.14 |