Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is this necessary to make two class of this java program?

Tags:

java

Is it important to save all class code as individual .java files like following way?

Outer.java,
Inner.java,
Test.java

Or can I make a single java file as Test.java. Please explain anonymous class, how can we create anonymous class in java, and what is the advantage/disadvantage over normal class?

class Outer {
    private int data = 50;

    class Inner {
        void msg() {
            System.out.println("Data is: " + data);
        }
    }
}

class Test {
    public static void main(String args[]) {
        Outer obj = new Outer();
        Outer.Inner in = obj.new Inner();
        in.msg();
    }
}
like image 442
Tilak Raj Avatar asked Jan 28 '14 06:01

Tilak Raj


People also ask

Can you have 2 classes in Java?

A single Java program can contain more than one class and there are no restrictions on the number of classes that can be present in one Java program. But each Java program should have one class declared as public to make it accessible for classes in a different package.

Is it necessary to create a class in Java?

The creation of classes in Java is necessary because they give your program structure, and reduce the amount of code that is present in your program. Instead of creating a new state and behavior for each similar object in a program, you can simply call the class that has the template for the creation of that object.

Why do we create two classes in Java?

WE NEED MULTIPLE CLASSES TO CREATE DIFFERENT TYPES OF OBJECTS. first of all Java is simple object oriented language. object oriented means you focus on managing data more than functionality.

Do all Java programs need a class?

Yes. In Java you always need one class with the function main to have the JRE run it.


3 Answers

See the Code Conventions for the Java programming language:

Each Java source file contains a single public class or interface. When private classes and interfaces are associated with a public class, you can put them in the same source file as the public class. The public class should be the first class or interface in the file.

I think this should answer your question. As I stated in my comment, it's not recommended to write a file that contains several unrelated classes. However, if you have an associated classes with that one public class you have in the file, you can place them in the same source file.

like image 81
Maroun Avatar answered Oct 22 '22 08:10

Maroun


An anonymous class in Java is a class not given a name and is both declared and instantiated in a single statement. You should consider using an anonymous class whenever you need to create a class that will be instantiated only once.

Although an anonymous class can be complex, the syntax of anonymous class declarations makes them most suitable for small classes that have just a few simple methods.

An anonymous class must always implement an interface or extend an abstract class. However, you don’t use the extends or implements keyword to create an anonymous class. Instead, you use the following syntax to declare and instantiate an anonymous class:

new interface-or-class-name() { class-body }

Within the class body, you must provide an implementation for each abstract method defined by the interface or abstract class. Here’s an example that implements an interface named runnable, which defines a single method named run:

runnable r = new runnable()
    {
        public void run()
        {
            //code for the run method goes here
        }
    };

Here are a few other important facts concerning anonymous classes:

  1. An anonymous class cannot have a constructor. Thus, you cannot pass parameters to an anonymous class when you instantiate it.

  2. An anonymous class can access any variables visible to the block within which the anonymous class is declared, including local variables.

  3. An anonymous class can also access methods of the class that contains it.

like image 36
learner Avatar answered Oct 22 '22 08:10

learner


yes you can do this , but it should be in small programming, while in big application you have to make class individual, Java strongly recommended that to make class different file, but it depends on you to do so.

like image 1
Sachin choudhary Avatar answered Oct 22 '22 07:10

Sachin choudhary