• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Extern Keyword?

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Is Extern ,a keyword in java...
If,yes pl.give an example which uses extern in java
Thanks in advance

alpa-urja
 
Ranch Hand
Posts: 96
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi! Alpa
Extern is not a keyword in java.
Latha
 
alpa urja
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Latha
but in one of the sites(I don't remember the site name),they mentioned Extern as a keyword in JAVA......
alpa-urja
 
Ranch Hand
Posts: 48
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by alpa urja:
Thanks Latha
but in one of the sites(I don't remember the site name),they mentioned Extern as a keyword in JAVA......
<pre> that is dut to alpa-gyan </pre>
alpa-urja


 
Ranch Hand
Posts: 316
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Extern is a keyword in C++, not Java. Here's an except (I hope this isn't illegal) from Thinking in C++ by Bruce Eckel. If you want to get the rest of the book, go to www.eckelobjects.com and follow the links to the download sites.
(Beginning of excerpt)
Variable declaration syntax
The meaning attributed to the phrase �variable declaration� has historically been confusing and contradictory, and it�s important that you understand the correct definition so you can read code properly. A variable declaration tells the compiler what a variable looks like. It says, �I know you haven�t seen this name before, but I promise it exists someplace, and it�s a variable of X type.�

In a function declaration, you give a type (the return value), the function name, the argument list, and a semicolon. That�s enough for the compiler to figure out that it�s a declaration and what the function should look like. By inference, a variable declaration might be a type followed by a name. For example:

int a;
could declare the variable a as an integer, using the logic above. Here�s the conflict: there is enough information in the code above for the compiler to create space for an integer called a, and that�s what happens. To resolve this dilemma, a keyword was necessary for C and C++ to say �This is only a declaration; it�s defined elsewhere.� The keyword is extern. It can mean the definition is external to the file, or that the definition occurs later in the file.

Declaring a variable without defining it means using the extern keyword before a description of the variable, like this:

extern int a;
extern can also apply to function declarations. For func1( ), it looks like this:

extern int func1(int length, int width);
This statement is equivalent to the previous func1( ) declarations. Since there is no function body, the compiler must treat it as a function declaration rather than a function definition. The extern keyword is thus superfluous and optional for function declarations. It is probably unfortunate that the designers of C did not require the use of extern for function declarations; it would have been more consistent and less confusing (but would have required more typing, which probably explains the decision).

Here are some more examples of declarations:

In the function declarations, the argument identifiers are optional. In the definitions, they are required (the identifiers are required only in C, not C++).
(End of excerpt)
HTH
Paul R
[This message has been edited by Paul Ralph (edited December 29, 2000).]
[This message has been edited by Paul Ralph (edited December 29, 2000).]
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic