Skip to content

Instantly share code, notes, and snippets.

@95Rajitha
Created May 10, 2021 16:01
Show Gist options
  • Save 95Rajitha/5bcf9007deb360e311b618dfd54829e9 to your computer and use it in GitHub Desktop.
Save 95Rajitha/5bcf9007deb360e311b618dfd54829e9 to your computer and use it in GitHub Desktop.
Type Erasure explanation in java
pulic class Sample
{
private Object inputItems;
public Object emptyBucket()
{
return inputItems;
}
public void dropToBucket(Object inputItems)
{
this.inputItems = inputItems;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment