Answers for "How to access the method of class in Java"

-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 "How to access the method of class in Java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language