» Convenciones.EstiloDeCodigo
This site relies heavily on Javascript. You should enable it if you want the full experience. Learn more.

Convenciones.EstiloDeCodigo

English | French | Italian

The original english version of this page is newer and may contain information this translation does not have! Click here to view the english version.

Para lograr una mejor legibilidad y estandarización del código asociado a vvvv, es necesario adherirse a los lineamientos de estilo de código listados a continuación:

Mayúsculas y minúsculas

Definiciones

Pascal Casing

 RedHotChilliPeppers

Camel Casing

 redHotChilliPeppers

Clases

  • Pascal Casing
//correcto
class RedHot
 
//incorrecto
class TRedHot
class redhot

Interfaces

  • iniciar con una I (por Interface) y continuar con Pascal Casing
//correcto
interface IRedHot
 
//incorrecto
interface RedHotInterface
interface Iredhot

Variables de Clase

  • iniciar con una F (por Field) y continuar Pascal Casing
//correcto
int FChilliPepper
 
//incorrecto
int ChilliPepper 
int FchilliPepper

Variables Locales, Argumentos de Funciones

  • Camel Casing
//correcto
int redPepper;
void Foo(int barCode);
 
//incorrecto
int Redpepper;
int RedPepper;
void Foo(int BarCode);

Variables Globales

  • iniciar con una G y continuar con Pascal Casing
//correcto
int GChilliPepper;
 
//incorrecto
int ChilliPepperGlobal;
int GchilliPepper;

Funciones

  • Pascal Casing
//correcto
PlayMusic();
 
//incorrecto
playMusic();

Eventos

  • iniciar con On.. y continuar con Pascal Casing
//correcto
OnExplode
 
//incorrecto
Explode
Onexplode

Callbacks de Eventos

  • llevan el nombre de sus Eventos correspondientes
  • terminan con ..CB
//correcto
ExplodeCB()
 
//incorrecto
ExplosionCB()
explodeCB()

Llaves

  • las llaves siempre en una línea nueva
//correcto
if true then
{ 
 ...
};
 
//incorrecto
if true then { ... };
if true then {
   ...
 };

Indentación

  • utilizar siempre 4 espacios

Espaciado

  • siempre hay un único espacio después de una coma o punto y coma, nunca antes
//correcto
MyFunction(a, b);
 
//incorrecto
MyFunction( a , b );
  • espacios únicos rodean a los operadores (excepto operadores unarios como el incremento o el NOT lógico)
//correcto
a = b;                       
for (int i = 0; i < 10; ++i) 
 
//incorrecto
a=b;                             
for (int i=0; i<10; ++i)

Guías de Código Adicionales

Note que algunas incompatibilidades con las guías que se listan a continuación (las cuales difieren entre sí a su vez) son deliberadas.

Mono Coding Guidlines

.Net Design Guidlines

Sharp Develop Coding Guidlines

anonymous user login

Shoutbox

~4h ago

joreg: vvvvTv S02E01 is out: Buttons & Sliders with Dear ImGui: https://www.youtube.com/live/PuuTilbqd9w

~6d ago

joreg: vvvvTv S02E00 is out: Sensors & Servos with Arduino: https://visualprogramming.net/blog/2024/vvvvtv-is-back-with-season-2/

~7d ago

fleg: hey there! What's the best tool for remote work? Teamviewer feels terrible. Thanks!

~20d ago

joreg: Last call: 6-session vvvv beginner course starting November 4: https://thenodeinstitute.org/courses/ws24-5-vvvv-beginners-part-i/

~1mth ago

joreg: Missed the last meetup? You can rewatch it here: https://www.youtube.com/live/MdvTa58uxB0?si=Fwi-9hHoCmo794Ag

~1mth ago

theurbankind: When is the next big event, like node festival ?

~1mth ago

~1mth ago

joreg: Join us for the next vvvv meetup on Oktober 17th: https://visualprogramming.net/blog/2024/25.-vvvv-worldwide-meetup/

~1mth ago

joreg: 6 session beginner course part 2 "Deep Dive" starts January 13th: https://thenodeinstitute.org/courses/ws24-5-vvvv-beginners-part-ii/