C++Talk.NET Forum Index C++Talk.NET
C++ language newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

template instance in normal class

 
Post new topic   Reply to topic    C++Talk.NET Forum Index -> C++ language (comp.lang.c++)
View previous topic :: View next topic  
Author Message
sahpathi
Guest





PostPosted: Sun Jun 11, 2006 9:10 am    Post subject: template instance in normal class Reply with quote



Hi,

Can anybody give an example of template class instance in a normal
class.
I tried three books and around 5 top sites to get an answer.
Back to top
benben
Guest





PostPosted: Sun Jun 11, 2006 9:10 am    Post subject: Re: template instance in normal class Reply with quote



sahpathi wrote:
Quote:
Hi,

Can anybody give an example of template class instance in a normal
class.
I tried three books and around 5 top sites to get an answer.


template <typename T>
class A{};

class B
{
public:
A<int> a;
std::vector<float> v;
std::pair<int, double> pr;

// etc...
};

Regards,
Ben
Back to top
Lucman
Guest





PostPosted: Sun Jun 11, 2006 9:10 am    Post subject: Re: template instance in normal class Reply with quote



sahpathi wrote:
Quote:
Hi,

Can anybody give an example of template class instance in a normal
class.
I tried three books and around 5 top sites to get an answer.

// template class examples
//
// generic template class
template<class Item>
class myobject
{
public:
myobject();
private:
Item data;
};
//class imlementation
template<class Item>
myobject::myobject()
{
.....
}

int main()
{
//calling temlate class

myobject<int> testobject;
myobject<char> testobject;
return 0;
}

Regards,
Lucman <fencim (AT) gmail (DOT) com>
Back to top
sahpathi
Guest





PostPosted: Mon Jun 12, 2006 9:10 am    Post subject: Re: template instance in normal class Reply with quote

Lucman wrote:
Quote:
sahpathi wrote:
Hi,

Can anybody give an example of template class instance in a normal
class.
I tried three books and around 5 top sites to get an answer.

// template class examples
//
// generic template class
template<class Item
class myobject
{
public:
myobject();
private:
Item data;
};
//class imlementation
template<class Item
myobject::myobject()
{
.....
}

int main()
{
//calling temlate class

myobject<int> testobject;
myobject<char> testobject;
return 0;
}

Regards,
Lucman <fencim (AT) gmail (DOT) com


There is no issue for instantiation in main. But when I instance it in
ANOTHER CLASS, that is when it creates problems.
Back to top
Display posts from previous:   
Post new topic   Reply to topic    C++Talk.NET Forum Index -> C++ language (comp.lang.c++) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.