473,385 Members | 1,740 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,385 software developers and data experts.

help needed with: error with constructor c++

34
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 1530
JosAH
11,448 Expert 8TB
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 Expert Mod 8TB
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
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 ...
5
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...
1
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...
2
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:...
5
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...
5
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...
2
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...
8
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
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...
12
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
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...

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.