what is difference between global methods and local methods?
Answer / 31st august 2009
Global methods are declared globally at class level(Like
static methods), we can directly access those methods with
out creating an object.
Loca methods are declared inside a class, u need to create
an object in order to access those methos
Thanks,
Aryan
sridhar.rvce@gmail.com
| Is This Answer Correct ? | 2 Yes | 0 No |
Can an unreferenced object be referenced again?
What is a generic data type?
What does super()represent, and how is it used in Java?
What is executor memory?
explain multi-threading in java?
Why do we use regex?
what do you mean by stream pipelining in java 8? Explain
Explain the difference between throw and throws in java?
Give us the name of the list layoutmanagers in java?
State one difference between a template class and class template.
Write a program to print all permutations of string?
When should you make a function static?