Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What does tname = class(name1, name2) mean?

Status
Not open for further replies.

hyperbug

Programmer
Aug 10, 2001
25
ES
I'm beginner. I think it's multiple inheritance.
 
Delphi doesn't have multiple inheritance. More than likely it's interfaces- delphi can inherit from one class, and implement any number of additional interfaces. Typically the classes start with T and the interfaces start with I, but that's just a standard and not enforced.

Interfaces are a way of solving many of the same problems that multiple inheritance solves.

TealWren
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top