473,398 Members | 2,812 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

passing different struct in a linked list using template

Hi dis my codig..
hav a luk..

#include<iostream>

#include<cstring>

using namespace std;

template<class T>class List{

struct node{

node *link;

T no;

node(T t):no(t){}

};

node *head;

public:

List(){head->link=NULL;}

void print_all()

{

node *p;

for(p=head;p!=NULL;p=p->link)

cout<<p->no;

}

void add_one(T t)

{

node *p;

if(head->link==NULL)

{

head=new node(t);

head->link=NULL;

return;

}

for(p=head;p->link!=NULL;p=p->link);

node *temp;

temp=new node(t);

temp->link=NULL;

p->link=temp;

}

};

class employee

{

char name[20];

int emp_no;

int salary;

public:

employee(char s[20],int t,int t2)

{

strcpy(name,s);

emp_no=t;

salary=t2;

}

};

void main()

{

employee e1("ruby",20,1000);

List <employee> e;

e.add_one(e1);

e.print_all();

}

//error C2679: binary '<<' : no operator found which takes a right-hand operand of type 'employee' (or there is no acceptable conversion)

i got the above error..
is this coding correct or not..
if it is wrong please tell the correct coding..
Mar 26 '08 #1
1 1745
Banfa
9,065 Expert Mod 8TB
The code is wrong or incomplete, in your function display_all you have

Expand|Select|Wrap|Line Numbers
  1. cout<<p->no;
  2.  
But the type of p->no is T from the template so when you instantiated the list with T as a structure the compiler no longer knows how to call cout with that structure.

You can solve this by

1. Removing display_all

2. Extending cout by writing a << operator that takes cout and T as it's parameters and outputs your structure.
Mar 26 '08 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

3
by: Seung-Uk Oh | last post by:
Hi, everyone! We are developing an application using both C and C++. We have defined a structure in a C program as follows: typedef struct node { struct node *next; int value; }List;
5
by: nifsmith | last post by:
Hi I am trying to learn about Queues and use templates at the same time. I have written the following code and I am getting a link error, stating "unresolved external symbol, "int__cdecl...
13
by: Dan Tsafrir | last post by:
is the following code standard? (cleanly compiles under g++-4.0.2): struct Asc { bool operator()(int a, int b) {return a < b;} }; struct Des { bool operator()(int a, int b) {return b > a;} };...
3
by: Emanuele Blanco | last post by:
Hi there, I just compiled a program that uses linked lists (needed it as an homework for my Programming course at University). It works flawlessly, even if I notice a thing. Here's my linked...
1
by: rllioacvuher | last post by:
I need help with a program. I have implemented that following header file with an unordered list using one array, but i need to be able to use an ordered list and 2 arrays (one for the links and one...
13
by: B. Williams | last post by:
I have written some code to accept input and place this input at the beginning or end of a list, but I need assistance including a class so that it will allow input of a phone number that is...
1
by: lg2530 | last post by:
template<class T> struct NODE { T data; NODE<T> * next; }; template<typename T> NODE<T>* QuickSortList( NODE<T>* list ) {}
10
by: kalar | last post by:
Hello. we have this struct and we must to make a linked list struct node { char name; char phone; struct node *prevName; // previous node alphabetically struct node *prevNumber; //...
6
by: APEJMAN | last post by:
I know what I'm posting here is wired, but it's been 3 days I'm workin g on these codes, but I have no result I post the code here I dont wanne bother you, but if any one of you have time to...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.