Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.70K
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for stilllearning

class template is a template that defines a class template <typename T> class SomeClass {...}; // this is a class template template <typename T> int some_function(T&) {...} // this is a function template A template class is a particular kind of class. There are many kinds of classes, and in …

Member Avatar for parchuresunilv
0
2K

The End.