Answers for "call method from another class java"

3

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.
  }
}
Posted by: Guest on June-18-2021
1

how to call a function from a class java

public class Classroom {
	 private String teacherName;
	
  	 public Classroom(String teacherName){
       this.teacherName = teacherName;
     }
  
  	 public String getTeacherName() {
        return teacherName;
     } 
}

public static void main(String[] args){
	Classroom firstGrade = new Classroom("John");
    /*Once you type the 'firstGrade.' your IDE most likely 
	will show all the functions it can acess*/
    firstGrade.getTeacherName();
}
Posted by: Guest on March-30-2021
1

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 (); 
    } 
} 
Posted by: Guest on October-18-2020
0

how to access methods from another class in java

public class Alpha extends Beta{
     public void DoSomethingAlpha() {
          DoSomethingBeta();  //?
     }
}
Posted by: Guest on December-22-2020
-2

how to access methods from another class in java

public class Alpha {
     public void DoSomethingAlpha() {
          Beta cbeta = new Beta();
          cbeta.DoSomethingBeta();  //?
     }
}
Posted by: Guest on December-22-2020

Code answers related to "call method from another class java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language