Skip to content

Instantly share code, notes, and snippets.

@yuvraj650
Created August 4, 2022 05:25
Show Gist options
  • Save yuvraj650/f4e7ff0510aaaa57821ff3b3a1706b0c to your computer and use it in GitHub Desktop.
Save yuvraj650/f4e7ff0510aaaa57821ff3b3a1706b0c to your computer and use it in GitHub Desktop.
Example OverRidding in JAVA
package com.yuvrajworld;
class A
{
public void f1(int x)
{
System.out.println("class A");
}
}
class B extends A
{
public void f1(int x)
{
System.out.println("Class B");
}
}
public class Main
{
public static void main (String[]args)
{
B obj = new B();
obj.f1(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment