Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 353 Bytes

16.9.md

File metadata and controls

3 lines (2 loc) · 353 Bytes

A function template is a blueprint used by compiler for generating type-specific fuctions. The compiler ordinarily deduces the template parameter(s) using the arguments of the call.

A class template is a blueprint used by compiler for generating type-specific classes. The compiler cannot deduce the template parameter(s) for a class template.