Co-varient methods 2

PHOTO EMBED

Mon Jan 15 2024 05:28:35 GMT+0000 (Coordinated Universal Time)

Saved by @E23CSEU1151 #java

class A
{
    A Show()
    {
        System.out.println("first");
        return this;
    }
}
class B extends A
{
    B Show()
    {
        super.Show();
        System.out.println("second");
        return this;
    }
}
class C
{
    public static void main(String[] args)
    {
        B r = new B();
        r.Show();
    }
    
}
content_copyCOPY