PAX_SAPIENTICAへ新しい機能を追加する方は以下のコーディング規約のもとにソースコードを追加してください。
Those adding new features should add source code under the following coding rules.
パスカルケース(アッパーキャメルケース)にしてください。
Make it a Pascal case (upper camel case).
class Sample {};
class SampleClass {};
class SampleClass2 {};
class SampleTestTest {};
class sample {};
class sampleClass {};
class sample_class {};
class Sample_Class {};
関数名はローワーキャメルケースにしてください。
The function name should be Lower CamelCase.
void sample();
void sampleClass();
void sampleClass2();
void sampleTestTest();
void Sample();
void SampleClass();
void sample_class();
void sample_Class();
void Sample_Class();
すべて小文字のスネークケースにしてください。
Make all lowercase snake case.
すべて大文字のスネークケースにしてください。
Make all uppercase snake case.
ファイル名はパスカルケース(アッパーキャメルケース)にしてください。
また拡張子として末尾に .hpp
をつけてください。
The file name should be Pascal Case (Upper CamelCase).
Also, please add .hpp
at the end as an extension.
Sample.hpp
SampleClass.hpp
SampleClass2.hpp
SampleTestTest.hpp
sample.hpp
sampleClass.hpp
sample_class.hpp
Sample_Class.hpp
SampleClass.cpp
SampleTestTest.h
C/C++で使われる一般の整数型を使用しています。
It uses the general integer type used in C/C++.
配列の添え字に使用する型は std::size_t
です。
The type used for array subscripts is std::size_t
.
PAX_SAPIENTICAでは以下の4種類のマクロを使用しています。
マクロの種類 | 説明 |
---|---|
PAX_SAPIENTICA_XXX_XXX_HPP | インクルードガードに使用。 |
PAX_SAPIENTICA_LIBRARY_XXX | バージョン情報などのマクロに使用。 |
PAX_SAPIENTICA_XXX | その他のマクロに使用。 |
PAXS_XXX | ライブラリ使用ユーザが定義する可能性の高いマクロに使用。 |
English
The following four macros are used.
Macro type | Description |
---|---|
PAX_SAPIENTICA_XXX_XXX_HPP | Used for include guards. |
PAX_SAPIENTICA_LIBRARY_XXX | Used for macros such as version information. |
PAX_SAPIENTICA_XXX | Used for other macros. |
PAXS_XXX | Used for macros that are likely to be defined by the user using the library. |
インクルードガードとして使用しています。
It is used as an include guard.
#ifndef PAX_SAPIENTICA_CONSTANT_VERSION_HPP
#define PAX_SAPIENTICA_CONSTANT_VERSION_HPP
// 中身 Contents
#endif // !PAX_SAPIENTICA_CONSTANT_VERSION_HPP
- 標準C++ライブラリで新しく実装されている機能はCの標準ライブラリではなく、C++の標準ライブラリを用いること。
- インクルードは「〇〇.h」ではなく、「c〇〇」を用いること。例えばmath.hではなくcmath。
- マクロを除き名前空間stdを必ずつけること。例:std::abs(-1)
English
- Newly implemented functions in the standard C++ library should be used instead of the standard C library.
- Use "cXX" for includes, not "XX.h". For example, cmath instead of math.h.
- Namespace std must be added except for macros. Example: std::abs(-1)
- C言語の標準ライブラリ C standard library
- C++の標準ライブラリ C++ standard library
- 外部ライブラリ External Libraries
- PAX_SAPIENTICAライブラリ PAX_SAPIENTICA Library
同じグループのインクルードはアルファベット順に並べる。
Includes of the same group should be arranged in alphabetical order.
数字はアルファベットよりも優先順位が高い。
Numbers have a higher priority than alphabetic characters.
例: 0>9>A>Z
hppファイル内では使用しないでください。
Do not use within hpp files.
クラス内/構造体内/関数内以外でのusing/typedefの使用
Use of using/typedef outside of classes/structures/functions