![]() |
|
Difference static and non static, public and private - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Java, JVM, & JRE (https://sinister.ly/Forum-Java-JVM-JRE) +--- Thread: Difference static and non static, public and private (/Thread-Difference-static-and-non-static-public-and-private) |
RE: Difference static and non static, public and private - Psycho_Coder - 10-23-2013 (10-23-2013, 07:31 PM)blackeagle Wrote: @Deque thank you very much i'm gonna read ur tut soon You should read some book as it is essential for knowing the basics or study from the link that I gave you, and I am sure you will be a great programmer too. BTW : I am not very good in Java, I am still learning. RE: Difference static and non static, public and private - Psycho_Coder - 10-23-2013 (10-23-2013, 07:31 PM)blackeagle Wrote: @Deque thank you very much i'm gonna read ur tut soon You should read some book as it is essential for knowing the basics or study from the link that I gave you, and I am sure you will be a great programmer too. BTW : I am not very good in Java, I am still learning. RE: Difference static and non static, public and private - Psycho_Coder - 10-23-2013 (10-23-2013, 07:31 PM)blackeagle Wrote: @Deque thank you very much i'm gonna read ur tut soon You should read some book as it is essential for knowing the basics or study from the link that I gave you, and I am sure you will be a great programmer too. BTW : I am not very good in Java, I am still learning. RE: Difference static and non static, public and private - blackeagle - 10-23-2013 @Psycho_Coder thank you for ur tips i'll definitely take it n consideration
RE: Difference static and non static, public and private - blackeagle - 10-23-2013 @Psycho_Coder thank you for ur tips i'll definitely take it n consideration
RE: Difference static and non static, public and private - blackeagle - 10-23-2013 @Psycho_Coder thank you for ur tips i'll definitely take it n consideration
RE: Difference static and non static, public and private - blackeagle - 10-25-2013 @Deque as i understood public variables could be accessed in any class and the private can only be accessed by using the methods get and set am i right ? RE: Difference static and non static, public and private - blackeagle - 10-25-2013 @Deque as i understood public variables could be accessed in any class and the private can only be accessed by using the methods get and set am i right ? RE: Difference static and non static, public and private - blackeagle - 10-25-2013 @Deque as i understood public variables could be accessed in any class and the private can only be accessed by using the methods get and set am i right ? RE: Difference static and non static, public and private - Deque - 10-25-2013 (10-25-2013, 10:33 AM)blackeagle Wrote: @Deque as i understood public variables could be accessed in any class Yes. |