<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class More extends That {
    protected String nm() {
	return "More";
    }

    protected void printNM() {
	That sref = (That)this;
	
	System.out.println("this.nm() = " + this.nm());
	System.out.println("sref.nm() = " + sref.nm());
	System.out.println("super.nm() = " + super.nm());
    }

    public static void main(String[] args) {
	More mref = new More();
	mref.printNM();
    }
}
</pre></body></html>