answersLogoWhite

0

if we are acessing static members we can call them directly,while coming to non static members inorder to call object we have to call by using new operator......

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you call main class with in main class in java?

We can't call a class. We always call a method in java.


How do you say class objects in french?

Class objects or Glass Objects? Class Objects is objets de classe Glass objects is objets en verre


Extension file for Java?

Java source files have the .java extension, compiled Java class files have the .class extension.


How do you call a method in Java?

It's when you take a object and run some code in the class of that object.


What do you call a Program that runs Java byte code instruction?

Get the JDK & Bluej from net and the rest will be done by them. Java byte codes are stored as *.class ; where "*" represents the class name, in your hard disk. You can download BlueJ as well as JDK from the related link.


The actions in a java class are called?

The actions in a java class are called methods.


What is Java Class Libraries?

The Java standard library refers to the set of dynamically loadable libraries that Java applications can call at run time. This is because the Java platform is not dependent on the specific operating system.


Why you start java program by class?

without class non of the folder can run so the java program should start in class we can use the class without object in java


Difference between super and this in java?

The keyword super is used to explicitly call methods/values from the parent class The keyword this is used to explicitly call methods/values from the current class


When java uses compiler?

What i know is java we will use compiler when it want to get class file(file with .class extension) from java file(file with .java extension).


What class begins java class hierarchy?

Class


Prog to display array element?

Java solutionFortunately, Java has a number of useful functions in the java.util.Arrays class for us.A call to...System.out.println(java.util.Arrays.toString(array));...will print out any array.