Wrapper function: Difference between revisions

Content deleted Content added
m Reverted 1 edit by 71.94.154.159 (talk) to last revision by CogitoErgoSum14. (TW)
Line 19:
===Multiple inheritance===
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.
 
public Class inherits implements LinkedList, HashSet{
......
}
 
==Library functions and system calls==