Usar o no variables publicas.

User avatar
Enrico Maria Giordano
Posts: 8776
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Has thanked: 1 time
Been thanked: 8 times
Contact:

Re: Usar o no variables publicas.

Post by Enrico Maria Giordano »

Rick Lipkin wrote:even statics need to be released with nil


This is not true. STATIC variables can't be released as they have static lifetime.

Rick Lipkin wrote:I also believe Locals execute faster at run-time.


I don't think so. STATIC variables are created at program startup and automatically released at the program end, while LOCAL variables are created each time the function is called and automatically released when the function returns.

EMG
User avatar
jvtecheto
Posts: 603
Joined: Mon Mar 04, 2013 4:32 pm
Location: Spain

Re: Usar o no variables publicas.

Post by jvtecheto »

goosfancito wrote:

Code: Select all | Expand


en el modulo inicial
PUBLIC hGlobal := {=>}
hGlobal[ "userid" ] :=
hGlobal[ "userlevel" ] :=
hGlobal[ "usermodules" ] :=
 


esto me da error al compilar con harbour

Code: Select all | Expand


#include "fivewin.ch"

public hGlobal:= {=>}

FUNCTION main()
   hGlobal["uno"]:= "valor agregado"

   ? hGlobal["uno"]
   

   RETURN NIL


Source\clases\main.prg(15) Error E0001 Statement not allowed outside of procedure or function
Hola gustavo

Cambia Por

públic hGlobal

Saludos.

Jose

Enviado desde mi POCOPHONE F1 mediante Tapatalk
Fwh 24.07 64 bits + Harbour 64 bits 3.2dev(r2407221137) + MSVC64
Post Reply