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,885 questions

51,811 answers

573 users

How to compare template class objects type in C++

1 Answer

0 votes
#include <iostream>

using std::cout;
using std::endl;

template <class T> class AClass {
	T val;
public:
	AClass(T _val) { val = _val; }
};

int main()
{
	AClass<int> o1(99), o2(88);
	AClass<double> o3(3.4);

	if (typeid(o1) == typeid(o2))
		cout << "o1 are the same type as o1" << endl;

	if (typeid(o1) != typeid(o3))
		cout << "o1 are not the same type as o3" << endl;

	return 0;
}

/*
run:

o1 are the same type as o1
o1 are not the same type as o3

*/

 



answered Jun 6, 2018 by avibootz

Related questions

1 answer 171 views
1 answer 184 views
1 answer 148 views
1 answer 162 views
1 answer 116 views
1 answer 110 views
...