如何在运行时将修饰符更改为私有而不是公共?
public class modifiableClass {
public modifiableClass(){
}
/* This method, If i want to change the modifier to be private
* at runtime.
*/
public void exampleMethod() {
//method body
}
}