Wrapper function: Difference between revisions

Content deleted Content added
Line 20:
In a [[programming language]] that does not support [[multiple inheritance]] of base classes, wrapper functions can be used to simulate it. Below is an example of part of a Java class that "inherits" from LinkedList and HashSet.
<source lang="Java">
public ClasspublicClass inherits implements LinkedList, HashSet{
......
}