Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
Significance of Static in variable initialization

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> PL/I & ASSEMBLER
Author Message
surendra_mainframe

New User


Joined: 18 Oct 2005
Posts: 5

PostPosted: Fri Nov 25, 2005 12:05 pm    Post subject: Significance of Static in variable initialization
Reply with quote

Hi,

What is significance of following:

DCL Var FIXED BIN(15) STATIC INIT(100);

Is it this static like in C language?
Back to top
View user's profile Send private message
References
PostPosted: Fri Nov 25, 2005 12:05 pm    Post subject: Re: Significance of Static in variable initialization Reply with quote

nutakkimurali

New User


Joined: 15 Nov 2005
Posts: 22

PostPosted: Fri Nov 25, 2005 1:25 pm    Post subject: Re: Significance of Static in variable initialization
Reply with quote

Variables declared with the STATIC attribute are allocated storage prior to
program execution. They remain allocated until the program terminates.

Noe it down one more thing that,STATIC is the default for external variables.

Where you want variables to retain their value from one invocation of the procedure to another declare them with the static attribute

DCL Var FIXED BIN(15) STATIC INIT(100);

In above staement the value of Var remains the same throughout the program.

*******************************************************
MAIN: PROCEDURE OPTIONS(MAIN);
DCL 1 STRUCTURE,
2 A FIXED DEC (6,2),
2 B CHAR(20);
.
.
P1: PROC;
DCL Name CHAR(10) STATIC init('muralee');
END P1;
P2: PROC;
DCL LIST(500) FIXED STATIC;
.
END P2;
END MAIN;
*********************************************************
Try to print the value of name in P2 and it'll give you the idea about the STATIC.

Muralee
Back to top
View user's profile Send private message
surendra_mainframe

New User


Joined: 18 Oct 2005
Posts: 5

PostPosted: Fri Nov 25, 2005 1:31 pm    Post subject: Re: Significance of Static in variable initialization
Reply with quote

Thanx
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> PL/I & ASSEMBLER All times are GMT + 6 Hours
Page 1 of 1