Per una migliore leggibilità e standardizzazione del codice di vvvv, dovremmo tutti conformarci agli stili di codice qui presentati.
RedHotChilliPeppers
Camel Casing
redHotChilliPeppers
//buono class RedHot //no buono class TRedHot class redhot
//buono interface IRedHot //no buono interface RedHotInterface interface Iredhot
//buono int FChilliPepper //no buono int ChilliPepper int FchilliPepper
//buono int redPepper; void Foo(int barCode); //no buono int Redpepper; int RedPepper; void Foo(int BarCode);
//buono int GChilliPepper; //no buono int ChilliPepperGlobal; int GchilliPepper;
//buono PlayMusic(); //no buono playMusic();
//buono OnExplode //no buono Explode Onexplode
//buono ExplodeCB() //no buono ExplosionCB() explodeCB()
//buono if true then { ... }; //no buono if true then { ... }; if true then { ... };
//buono MyFunction(a, b); //no buono MyFunction( a , b );
//buono a = b; for (int i = 0; i < 10; ++i) //no buono a=b; for (int i=0; i<10; ++i)
Tenete presente che certe incompatibilità con le guide proposte sotto (che pure differiscono tra loro) sono deliberate.
anonymous user login
~4h ago
~6d ago
~6d ago
~7d ago
~20d ago
~1mth ago
~1mth ago
~1mth ago
~1mth ago
~1mth ago