Qtコードスタイル(dbzhang 008に回転)
Qtコードスタイル
カテゴリ: C/C++ Qt
2011-05-01 12:03
1723人が読みます
コメント(19)
コレクション
告発する
字下げ
// Wrong
int a, b;
char *c, *d;
// Correct
int height;
int width;
char *nameOfThis;
char *nameOfThat;
// Wrong
short Cntr;
char ITEM_DELIM = '/t';
// Correct
short counter;
char itemDelimiter = '/t';
追加
Qt例の作成には、変数名に対して以下のような提案があります。
void MyClass::setColor(const QColor &color;)
{
this->color = color;
}
またはvoid MyClass::setColor(const QColor &newColor;)
{
color = newColor;
}
使用を避ける (意味不明の文字):void MyClass::setColor(const QColor &c)
{
color = c;
}
注意:構造関数では、同じ問題が発生します。信じようが信じまいが、次の仕事はできます。MyClass::MyClass(const QColor &color;)
: color(color)
{
}
空白// Wrong
if(foo){
}
// Correct
if (foo) {
}
char *x;
const QString &myString;
const char * const y = "hello";
// Wrong
char* blockOfMemory = (char* ) malloc(data.size());
// Correct
char *blockOfMemory = reinterpret_cast<char *>(malloc(data.size()));
//Wrong
x = rect.x();
y = rect.y();
width = rect.width();
height = rect.height();
大かっこ// Wrong
if (codec)
{
}
// Correct
if (codec) {
}
class Moo
{
};
// Wrong
if (address.isEmpty()) {
return false;
}
// Correct
if (address.isEmpty())
return false;
if (x) {
// do something strange
yyyyyyyyy = yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy +
zzzzzzzzzzzzzzzzzzzzzz;
}
// Correct
if (address.isEmpty() || !isValid()
|| !codec) {
return false;
}
// Wrong
if (address.isEmpty())
return false;
else {
qDebug("%s", qPrintable(address));
++it;
}
// Correct
if (address.isEmpty()) {
return false;
} else {
qDebug("%s", qPrintable(address));
++it;
}
// Wrong
if (a)
if (b)
...
else
...
// Correct
if (a) {
if (b)
...
else
...
}
// Wrong
while (a);
// Correct
while (a) {}
丸括弧// Wrong
if (a && b || c)
// Correct
if ((a && b) || c)
// Wrong
a + b & c
// Correct
(a + b) & c
switch文switch (myEnum) {
case Value1:
doSomething();
break;
case Value2:
doSomethingElse();
// fall through
default:
defaultHandling();
break;
}
行と列// Correct
if (longExpression
+ otherLongExpression
+ otherOtherLongExpression) {
}
//Wrong
if (dsfljfsfskjldsjkljklsjdk
&& fdsljsjdsdljklsjsjkdfs
&& dsfljkdfjkldksdfjdjkfdksfdkjld) {
sadjdjddadhsad;
}
//Correct
if (dsfljfsfskjldsjkljklsjdk
&& fdsljsjdsdljklsjsjkdfs
&& dsfljkdfjkldksdfjdjkfdksfdkjld) {
sadjdjddadhsad;
}
whleまたはelse ifに対しては、この問題は存在しません。while (dsfljfsfskjldsjkljklsjdk
&& fdsljsjdsdljklsjsjkdfs
&& dsfljkdfjkldksdfjdjkfdksfdkjld) {
sadjdjddadhsad;
}
追加ヴィトンと継承