Afin de faciliter la lecture et la standardisation du code dans vvvv, merci de suivre ces quelques conventions :
RedHotChilliPeppers
Camel Casing
redHotChilliPeppers
//bien class RedHot //pas bien class TRedHot class redhot
//bien interface IRedHot //pas bien interface RedHotInterface interface Iredhot
//bien int FChilliPepper //pas bien int ChilliPepper int FchilliPepper
//bien int redPepper; void Foo(int barCode); //pas bien int Redpepper; int RedPepper; void Foo(int BarCode);
//bien int GChilliPepper; //pas bien int ChilliPepperGlobal; int GchilliPepper;
//bien PlayMusic(); //pas bien playMusic();
//bien OnExplode //pas bien Explode Onexplode
//bien ExplodeCB() //pas bien ExplosionCB() explodeCB()
//bien if true then { ... }; //pas bien if true then { ... }; if true then { ... };
//bien MyFunction(a, b); //pas bien MyFunction( a , b );
//bien a = b; for (int i = 0; i < 10; ++i) //pas bien a=b; for (int i=0; i<10; ++i)
Notez que les différences avec les autres guides listés ci-dessous (qui différent aussi entre eux) sont volontaires.
anonymous user login
~3d ago
~3d ago
~10d ago
~12d ago
~14d ago
~17d ago
~17d ago
~25d ago
~1mth ago
~1mth ago