網頁

2016年10月15日 星期六

Coding Conventions

Last Update: 2016/10/16 02:24+08



C Coding Conventions
struct foo_t{
 int my_var;
 void my_func(){}
}


Java Coding Conventions
class Foo{
 int myVar;
 void myFunc(){}
}


C# Coding Conventions
class Foo{
 int MyVar;
 void MyFunc(){}
}


My Coding Conventions (Java)
class Foo{
 int myVar;
 void myFunc(){}
}
在寫程式時, 我比較在意是否可以一眼區分出class or variable


沒有留言:

張貼留言