class 짤 때, 몇가지 메소드만 abstract로 지정이 가능하냐?


같은 클래스에서 말야.

가령


class A {

public int execute() {}

public abstract int run() {} 

}


이거 되냐?