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