can we create a class inside a class in java
Yes you can
class OuterClass {
class InnerClass {
}
}
can we create a class inside a class in java
Yes you can
class OuterClass {
class InnerClass {
}
}
java call method from another class example
public class method{
public static void sayHello(){
System.out.println("Hello World");
}
}
public class app{
public static void main(String[] args){
method m = new method(); // Creating an instance from our class
m.sayHello(); // using the class methods by the instance we created.
}
}
java use method in another class
class A {
public void a1 ( ) {
}
private void a2 ( ) {
}
}
class B {
private A objA = new A ( );
public void b1 ( ) {
// Call to method a1. This works.
objA.a1 ();
}
void b2 ( ) {
// Call to method a2. This will give compile error.
objA.a2 ();
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us