Friday, October 4, 2024
What is Global Variable

What is Global Variable?
एक Variable एक storage area को allocate नाम है जिसे programme द्वारा control किया जा सकता है। एक type का variable variable की memory के size and configuration को specifies करता है।

किसी Variable में डाले जा सकने वाले value की सीमा की calculate value में insert से पहले की जाती है, क्योंकि variable का type उसमें value insert से पहले तय किया जाना चाहिए।

Scope of Variables
एक variable का scope literally एक variable’s का lifespan है। यह एक code block है जिसमें एक variable is valid or still alive है।

function opp()
{
var b;
}

“b” function के भीतर, हम एक variable “opp” declare करते हैं। उस variable का scope उस function के inside रहता है, और उस function के outside use नहीं किया जा सकता है।

Three places हैं जहां हम अपनी programming में variable का use कर सकते हैं।

  • किसी function में या किसी block के inside तब इसे Local variable कहा जाता है |
  • यदि सभी functions के outside use किया जाता है तो इसे Global variables के रूप में named किया गया है |
  • यदि function parameters की definition में use किया जाता है तो इसे formal parameters के रूप में कहा जाता है।

Types of Variable:

  1. Local Variable
  2. Global Variable

1. Local Variable:
Local Variable को programming block or subroutines में declared variable के रूप में specified किया गया है। function के block execute होने से पहले local variable बनी रहती है। उसके बाद यह automatically lost हो जाएगा।

Example of Local Variable

public int sum(){
int a =4;
int b=5;
return a+b;
}

यहाँ, ‘a’ और ‘b’ local variables हैं|

2. Global Variable
एक variable जो function या code के block के outside specify किया जाता है, उसे Global Variable के रूप में जाना जाता है। इसकी global पहुंच है, जिसका अर्थ है कि यह program’s के lifespan पर अपनी relevance बनाए रखता है। इसलिए, program के inside specified कोई भी सुविधा programme के inside तक पहुंच सकती है, जब तक कि वह shadowed न हो।

Example of Global Variable

int a =4;
int b =5;
public int add(){
return a+b;
}

यहाँ, ‘a’ और ‘b’ Global variables हैं|

Advantages of using Local Variables

  • Task के running के दौरान variables के value unchanged रहते हैं, Local variable का basic meaning है।
  • यदि एक single variable जो concurrently रूप से running है, कई tasks द्वारा change कर दिया जाता है, तो परिणाम unpredictable हो सकता है। हालाँकि, इसे local variable के रूप में declare करने से इसका solution हो जाएगा।
  • हम different functions में same name को assign कर सकते हैं।
  • जैसे ही function execute किया जाता है, variable की memory free set की जाती है।

Advantages of using Global Variables

  • Global variable को एक programme में सभी functions or modules से access किया जा सकता है।
  • हमें केवल modules के outside single-time global variable करने की आवश्यकता है।
  • इसका use तब किया जाता है जब users को पूरे program में एक ही data को बार-बार access करने की needs होती है।
Tags: , , , , , ,
Avatar
My name is Yash Pogra and I am the chief blogger at Codeash and where I like to share my internet/tech experience with my online readers on this website. I have been a webmaster from 2015 which is when I had registered my first company by the name Codeash. I have ventured into different online businesses like offering SEO Services, website development services.

Related Article

No Related Article

0 Comments

Leave a Comment