我有以下课程:
public class MyClass {
public static void callFromThirdPartyApp(String allInput){
HideInput hi = new HideInput();
hi.workWithInput(allInput);
}
}
public class HideInput {
public void workWithInput{String allInp)
work with allInp...
}
我想要实现的是,每当callFromThirdPartyApp
调用该方法时,它都会接受输入,启动一个非静态类,将所有输入传递给该类并让它使用它。
挑战在于callFromThirdPartyApp
可以同时调用。此代码是否会启动该类的不同实例,HideInput
以确保该类allInp
的其他实例无法触及?
EDIT1:缩进 EDIT2:对不起,我的意思是非静态的,而不是私有 EDIT3:将标题修改为非静态(来自私有)