Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to define a class method outside the class template in C++

1 Answer

0 votes
#include <iostream>
 
template<class T>
class Example {
public:
    T a, b;
    Example(T x, T y) : a(x), b(y) {}   // constructor
     
    void show();
};
 
template<class T>
void Example<T>::show() {
   std::cout << a << " " << b;
}
 
 
int main() {
    int x = 10;
    int y = 25;
     
    Example<int> obj(x, y);
     
    obj.show(); 
}
 
 
 
 
/*
run:
 
10 25
 
*/

 



answered Dec 6, 2022 by avibootz

Related questions

1 answer 175 views
1 answer 114 views
1 answer 103 views
1 answer 121 views
1 answer 134 views
134 views asked Dec 10, 2020 by avibootz
...