how to call methods to other classes in java code example
Example 1: how to access methods from another class in java
public class Alpha extends Beta{
public void DoSomethingAlpha() {
DoSomethingBeta(); //?
}
}
Example 2: how to access methods from another class in java
Beta.DoSomethingBeta();