473,795 Members | 3,175 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

help needed with: error with constructor c++

34 New Member
hi guys,
i get the following error when i try to create a new TreeNode

Expand|Select|Wrap|Line Numbers
  1.  error C2514: 'TreeNode' : class has no constructors
  2.  
this error is caused by the following line:

Expand|Select|Wrap|Line Numbers
  1. treeObj->root = new TreeNode(oneline.c_str());
  2.  
and i have declared the following as a global variable:
Expand|Select|Wrap|Line Numbers
  1. TreeNode<char> *treeNodeObj = NULL;
  2.  
i am very puzzled abt this because my constructor has already been declared...
i have attached the code for the TreeNode.h below:

Expand|Select|Wrap|Line Numbers
  1. #pragma once
  2. #include <iostream>
  3. #include <fstream>
  4. #include <string>
  5. #include <deque>
  6. #include <queue>
  7. using namespace std;
  8.  
  9. template <class T>
  10. class TreeNode
  11. {
  12.     public:
  13.         TreeNode<T>(T newItem);
  14.         ~TreeNode<T>(void);
  15.         void setItem(T newItem);
  16.         void setLeft(TreeNode *newLeft);
  17.         void setRight(TreeNode *newRight);
  18.         T getItem();
  19.         TreeNode<T>* getLeft();
  20.         TreeNode<T>* getRight();
  21.         bool IsSameNode(T c);
  22.         T item;
  23.  
  24.     private:
  25.         TreeNode *left;
  26.         TreeNode *right;
  27. };
  28.  
  29.  
  30. template <class T>
  31. TreeNode<T>::TreeNode(T newItem)
  32. {
  33.     item = newItem;
  34.     left = NULL;
  35.     right = NULL;
  36. }
  37.  
  38. template <class T>
  39. TreeNode<T>::~TreeNode(void)
  40. {
  41. }
  42.  
  43.  
  44. template <class T>
  45. void TreeNode<T>::setItem(T newItem) 
  46. {
  47.     // set methods
  48.     item = newItem;
  49. }
  50.  
  51. template <class T>
  52. void TreeNode<T>::setLeft(TreeNode *newLeft) 
  53. {
  54.     left = newLeft;
  55. }
  56.  
  57. template <class T>
  58. void TreeNode<T>::setRight(TreeNode *newRight) 
  59. {
  60.     right = newRight;
  61. }
  62.  
  63. template <class T>
  64. T TreeNode<T>::getItem()
  65. {
  66.     // get methods
  67.     return item;
  68. }
  69.  
  70. template <class T>
  71. TreeNode<T>* TreeNode<T>::getLeft() 
  72. {
  73.     return left;
  74. }
  75.  
  76. template <class T>
  77. TreeNode<T>* TreeNode<T>::getRight() 
  78. {
  79.     return right;
  80. }
  81.  
  82. template <class T>
  83. bool TreeNode<T>::IsSameNode(T c)
  84. {
  85.     return this->item == c;
  86. }
  87.  
any help or suggestion is appreciated so please leave a comment below and i will reply within 5 mins cos i will check this forum every 5mins..
thanks :)
Sep 6 '08 #1
2 1556
JosAH
11,448 Recognized Expert MVP
Unless I'm totally blind, you have a ctor for a char but not for a char*.

kind regards,

Jos
Sep 6 '08 #2
weaknessforcats
9,208 Recognized Expert Moderator Expert
The string::c_str() returns a const char*.

Your root would have to be:
Expand|Select|Wrap|Line Numbers
  1. TreeNode<const char*> root(str.c_str());
  2.  
for the code to compile and link.
Sep 6 '08 #3

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

Similar topics

15
1935
by: PhilB | last post by:
Hello experts, I am a complete beginner in C++ (although I know C). I am trying to compile the code below, and I get the following error. Can anyone explain to me my mistake? Thanks! PhilB myprog2.cpp: In method `Line::Line (Point, Point)': myprog2.cpp:32: no matching function for call to `Point::Point ()'
5
2112
by: jhon02148 | last post by:
hi this hw have four files: 1. for the main program 2. listp.cpp (the source file) 3. listp.h (the header file) 4. exception.h if there is anybody who could help me with this hw i really appreciate his help. thanks for anybody in advance
1
2025
by: jhon02148 | last post by:
hi this hw have four files: 1. for the main program 2. listp.cpp (the source file) 3. listp.h (the header file) 4. exception.h hi iam done with my hw i still have to do one function which is the last one on program.cpp subsetsum(int aList, int sum)so please can you help.
2
3246
by: k1ckthem1dget | last post by:
I need to display the unsorted list of names and display the sorted list of names. My program is getting a bunch of errors though, and i dont know why. I am getting the following errors. 28: error: cannot convert `char (*)' to `int*' for argument `1' to `void showArray(int*, int)' 33: error: expected unqualified-id before "for" 33: error: expected constructor, destructor, or type conversion before '<' token 33: error: expected...
5
2000
by: Bill Oliver | last post by:
Help! I am writing an image processing package. For one constructor, I allow creating an image from a map of points and color values. The points are of a "position" class and the colors are just a vector. It starts thusly: template <class T> image<T>::image(map<position<int, vector<T >& in_map){ cerr<< "***** ***** ***** ***** ***** *****\n";
5
2294
by: raylopez99 | last post by:
I need an example of a managed overloaded assignment operator for a reference class, so I can equate two classes A1 and A2, say called ARefClass, in this manner: A1=A2;. For some strange reason my C++.NET 2.0 textbook does not have one. I tried to build one using the format as taught in my regular C++ book, but I keep getting compiler errors. Some errors claim (contrary to my book) that you cannot use a static function, that you must...
2
2905
by: rookiejavadude | last post by:
I'm have most of my java script done but can not figure out how to add a few buttons. I need to add a delete and add buttong to my existing java program. Not sure were to add it on how. Can anyone help? my script is below. thank you import java.awt.*; //import all java.awt import java.awt.event.*; //import all java.awt.event import java.util.*; //import all java.util import javax.swing.*; //import all javax.swing class Product...
8
2340
by: mohammaditraders | last post by:
#include <iostream.h> #include <stdlib.h> #include <conio.h> #include <string.h> class Matrix { private : int numRows, numCols ; int elements ;
6
6872
by: Sergey Poberezovskiy | last post by:
I have the following code in C# that I have trouble converting to VB(2.0): private delegate void openDialog(); private void openWindowsDialog(openDialog open) { Thread thread = new Thread(new ThreadStart(open)); thread.SetApartmentState(ApartmentState.STA); thread.Start(); }
12
2701
by: Kira Yamato | last post by:
I've posted this in another thread, but I suppose I should've started a new thread for it instead. I cannot get the following short program to compile under g++: #include <iostream> #include <fstream> #include <iterator> #include <algorithm>
0
9519
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10436
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10163
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7538
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6780
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5436
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5563
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4113
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2920
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.