Avoid encodings: Hungarian Notation

De Basef
Revisão de 11h09min de 27 de janeiro de 2020 por Admin (discussão | contribs) (Criou página com 'Examples of Hungarian Notation: * lAccountNum : variable is a long integer ("l"); * arru8NumberList : variable is an array of unsigned 8-bit integers ("arru8"); * bReadLine(b...')

(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para: navegação, pesquisa

Examples of Hungarian Notation:

  • lAccountNum : variable is a long integer ("l");
  • arru8NumberList : variable is an array of unsigned 8-bit integers ("arru8");
  • bReadLine(bPort,&arru8NumberList) : function with a byte-value return code.
  • strName : Variable represents a string ("str") containing the name, but does not specify how that string is implemented.