Skip to content

Instantly share code, notes, and snippets.

@95Rajitha
Last active June 2, 2021 17:55
Show Gist options
  • Save 95Rajitha/f16ddcf40537856dbb073233cc5deace to your computer and use it in GitHub Desktop.
Save 95Rajitha/f16ddcf40537856dbb073233cc5deace to your computer and use it in GitHub Desktop.
Edge Cases in java type Erasure
public class SampleChild extends Sample<Integer> {
public SampleChild(int size) {
super(size);
}
public void putItems(Integer data) {
super.putItems(data);
}
public Integer getItems(){
// implementations
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment