我想在调用方法时显示编译时错误。
就像我有一个类“MyClass”,其中有两种方法“methodA()”和“methodB()”。现在我创建了一个 "MyClass" 的实例。使用这个实例我可以调用这两种方法,但如果我在“methodA()”之前调用“methodB()”,我需要显示编译时错误;强文本
class MyClasss
{
public void methodA()
{
//do some thing
}
public void methodB()
{
//do some thing
}
}
class MyRunningClasss
{
public static void main(String... args)
{
MyClass MC = new MyClass();
// it will not give any compile time error.
MC.methodA();
MC.methodB();
// but it have to give compile time error.
MC.methodB();
MC.methodA();
}
}