is there any concept of shared variable in java and if it is what is it?
|
|
|||||
|
|
|
If you want to share variables between 2 functions, you can use global variables or pass them with pointers. Example with pointers:
|
||
|
|
|
|
Not sure what this question means. All public classes are shared, all variables can be shared if they accessible through public methods, etc. |
||
|
|
|
In the VB sense, a static field in Java is shared by all instances of the class. In the classical sense, Java has various RPC, service and database access mechanisms. |
||
|
|
|
|
It depends on what you mean as you can "share variables" or rather "share data" in various ways. I take it that you're a beginner, so I'll make it brief. The short answer is yes, you can share variables and below are a couple of ways to do it. Share data as arguments for parameters in functions
Share data as attributes in a class You can define a class with attributes, when you instantiate the class to an object (i.e. you "new" it) you can set the object's attributes and pass it around. Simple example is to have a parameter class:
You can use it in the following way:
|
||
|
|
