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

Syntax Error comparing private class data

how can i compare the a private variable of a class and a value in the column of a text file.

there is a syntax error in my code while comparing. senario is i am getting bus details like busno, source , destination,type of bus, price/head . I should compare the busno which i get through object to the bus no which is present in a .txt file. and contents in the text file is as the format below.
|1488|xxx|uuuu|A/c|150.
|1422|mmm|oooo|nonA/C|900.


Expand|Select|Wrap|Line Numbers
  1. #include<iostream>
  2. #include<iomanip>
  3. #include<fstream>
  4. #include<string>
  5. class add
  6. {
  7. private:
  8.      int bus_no;
  9.      int route_no;
  10.      string source;
  11.      string dest;
  12.      int time;
  13.      int ticket_price;
  14.      string type;
  15.  
  16. public:
  17. void enter_bus()
  18. {
  19.         char temp[1000],busno[5];
  20.         string type("A/C");
  21.         cout<<"Enter Bus_No::";
  22.         cin>>busno;
  23.         bus_no=string(busno);
  24.         cout<<"Enter Bus_Route::";
  25.         cin>>route_no;
  26.         cout<<"Enter Source::";
  27.         cin>>source;
  28.         cout<<"Enter Destination::";
  29.         cin>>dest;
  30.         cout<<"Enter Time(Hrs:Min)::";
  31.         cin>>time;
  32.         cout<<"Enter Ticket_Price::";
  33. cin>>ticket_price;
  34.        // Type:
  35.         cout<<"Type of Bus (A/C or NonA/C)::";
  36.        // cout<<"Enter Type::";
  37.         cin>>type;
  38. }
  39.  void get_busno()
  40. {
  41.   bus_no;
  42. }
  43.  
  44. void display__bus()
  45. {
  46.  
  47.                 cout<<"Bus details"<<endl;
  48.                 cout<<"|"<<bus_no<<"|";
  49.                 <<setw(10)<<route_no<<"|";
  50.                 <<setw(15)<<source<<"|";
  51.                 <<setw(15)<<dest<<"|";
  52.                 <<setw(8)<<time<<"|";
  53.                 <<setw(6)<<type<<"|";
  54.                 <<setw(3)<<no_of_seats<<"|";
  55.                 <<setw(4)<<ticket_price<<endl;
  56. }
  57.  
  58. void intofile__bus()
  59. {
  60.  
  61.  
  62.                 cout<<"|"<<bus_no<<"|";
  63.                 <<setw(10)<<route_no<<"|";
  64.                                                 <<setw(15)<<source<<"|";
  65.                 <<setw(15)<<dest<<"|";
  66.                 <<setw(8)<<time<<"|";
  67.                 <<setw(6)<<type<<"|";
  68.                 <<setw(3)<<no_of_seats<<"|";
  69.                 <<setw(4)<<ticket_price<<endl;
  70. }
  71. };
  72. void main
  73. {
  74.  
  75.         add obj;
  76.         fstream file;
  77.         file.open("Bus.txt",std::ios_base::ate | std::ios_base::in | std::ios_base::out );
  78.         file.seekg(0, std::ios_base::end);
  79.         unsigned long length = file.tellg();
  80.         int obj_length=sizeof(obj);
  81.         int p=length/obj_length;
  82.         int n;
  83.         int option;
  84.         char choice;
  85.         int flag=0;
  86.         add obj2[p];
  87.         file.seekg(0,ios::beg);
  88.         cout<<"Want to enter details in the file (y/n)?"<<endl;
  89.         cin>>choice;
  90.         while((choice=='y') || (choice=='Y'))
  91.         {
  92.                  cout<<"Enter the option 1 for adding details:"<<endl;
  93.                 cin>>option;
  94.                 switch (option)
  95.                 {
  96.                  case 1: obj.enter_bus();
  97. for(n=0;n<=p;n++)
  98.                         {
  99.                            file.read((char *)&obj2[n],sizeof(obj2[n]));
  100.                            if(strcmp(obj2[n].get_busno(),obj.get_busno())==0)
  101.                              {
  102.                                cout<<"Sorry the bus already exist"<<endl;
  103.                                flag=2;
  104.                                break;
  105.                             }
  106.                             else
  107.                             {
  108.                               flag=1;
  109.                             }
  110.                          }
  111.  
  112.                 default: cout<<"Please enter the option 1 for adding details"<<endl;
  113.                 }
  114.  
  115.                 if(flag==1)
  116.                 {
  117.                    obj.enter_bus();
  118.                    obj.intofile_bus();
  119.                    file.write((char *)&obj,sizeof(obj));
  120.                    cout<<"Record inserted successfully...";
  121.                 }
  122.                else
  123.                 {
  124.                  cout<<"Want to enter the details again(y/n)?"<<endl;
  125.                  cin>>choice;
  126.                 }
  127.             }
Aug 8 '08 #1
13 2588
JosAH
11,448 Expert 8TB
So you want to start a guessing game? What can we win? Any strings attached?
It doesn't work like that; tell us what the problem is and show the relevant code;
dumping all your code here and make us guess is ridiculous.

kind regards,

Jos
Aug 8 '08 #2
Savage
1,764 Expert 1GB
Tell us what is this supposed to do:

Expand|Select|Wrap|Line Numbers
  1. void get_busno()
  2. {
  3.   bus_no;
  4.  
  5. }
,regards. ;)
Aug 8 '08 #3
how can i compare the a private variable of a class and a value in the column of a text file.

there is a syntax error in my code while comparing. senario is i am getting bus details like busno, source , destination,type of bus, price/head . I should compare the busno which i get through object to the bus no which is present in a .txt file. and contents in the text file is as the format below.
|1488|xxx|uuuu|A/c|150.
|1422|mmm|oooo|nonA/C|900.
please reply me


Expand|Select|Wrap|Line Numbers
  1. void main
  2. {
  3.  
  4.         add obj;
  5.         fstream file;
  6.         file.open("Bus.txt",std::ios_base::ate | std::ios_base::in | std::ios_base::out );
  7.         file.seekg(0, std::ios_base::end);
  8.         unsigned long length = file.tellg();
  9.         int obj_length=sizeof(obj);
  10.         int p=length/obj_length;
  11.         int n;
  12.         int option;
  13.         char choice;
  14.         int flag=0;
  15.         add obj2[p];
  16.         file.seekg(0,ios::beg);
  17.         cout<<"Want to enter details in the file (y/n)?"<<endl;
  18.         cin>>choice;
  19.         while((choice=='y') || (choice=='Y'))
  20.         {
  21.                  cout<<"Enter the option 1 for adding details:"<<endl;
  22.                 cin>>option;
  23.                 switch (option)
  24.                 {
  25.                  case 1: obj.enter_bus();
  26. for(n=0;n<=p;n++)
  27.                         {
  28.                            file.read((char *)&obj2[n],sizeof(obj2[n]));
  29.                           if(strcmp(obj2[n].get_busno(),obj.get_busno())==0)                           {
  30.                                cout<<"Sorry the bus already exist"<<endl;
  31.                                flag=2;
  32.                                break;
  33.                             }
  34.                             else
  35.                             {
  36.                               flag=1;
  37.                             }
  38.                          }
  39.  
  40.                 default: cout<<"Please enter the option 1 for adding details"<<endl;
  41.                 }
  42.  
  43.                 if(flag==1)
  44.                 {
  45.                    obj.enter_bus();
  46.                    obj.intofile_bus();
  47.                    file.write((char *)&obj,sizeof(obj));
  48.                    cout<<"Record inserted successfully...";
  49.                 }
  50.                else
  51.                 {
  52.                  cout<<"Want to enter the details again(y/n)?"<<endl;
  53.                  cin>>choice;
  54.                 }
  55.             }
Aug 8 '08 #4
pootle
68
Check the line:

Expand|Select|Wrap|Line Numbers
  1. if(strcmp(obj2[n].get_busno(),obj.get_busno())==0)
The method
Expand|Select|Wrap|Line Numbers
  1. get_busno()
is void. Anyway, your attribute
Expand|Select|Wrap|Line Numbers
  1. bus_no
is an integer so using strcmp is a bit strange...

HTH
Aug 8 '08 #5
Check the line:

Expand|Select|Wrap|Line Numbers
  1. if(strcmp(obj2[n].get_busno(),obj.get_busno())==0)
The method
Expand|Select|Wrap|Line Numbers
  1. get_busno()
is void. Anyway, your attribute
Expand|Select|Wrap|Line Numbers
  1. bus_no
is an integer so using strcmp is a bit strange...

HTH



diclared bus_no in the class as string and in public scope.
and still getting error on this line.

if(strcmp(obj2[n].bus_no,obj.bus_no)==0)
as

newadd1.cpp:102: error: cannot convert âstd::stringâ to âconst char*â for argument â1â to âint strcmp(const char*, const char*)â
Aug 8 '08 #6
Tell us what is this supposed to do:

Expand|Select|Wrap|Line Numbers
  1. void get_busno()
  2. {
  3.   bus_no;
  4.  
  5. }
,regards. ;)

i though calling a private variable of a class using object would throw an error so called the member variable through a public function.
Aug 8 '08 #7
Banfa
9,065 Expert Mod 8TB
Please read our posting guidelines taking note of the sections on choosing a thread title and composing your post (using code tags round the posted code).


You have posted code and said you have a syntax error, this is not enough you should post the exact error you are getting (copy and past it) and you need to tell us on what line of code it is appearing.

However in general

1. You have declared main as returning void. This invokes undefined behaviour, all bets are now off your program could do anything. Examining any further errors after this one is pointless.

Main MUST be declared as either

int main()

or

int main(int argc, char **argp)

that is it must return int.

2. Private data is only accessible inside the class. I don't see you calling any class methods so I assume your syntax error is attempting to access private data. You will need to provide access to the data by either creating a method to return the data, creating a method to do the comparison for you, changing the access specifier of the data being declared (but not this last one is really a hack).
Aug 8 '08 #8
Banfa
9,065 Expert Mod 8TB
Oh and while you are reading the posting guidelines read the bit about NOT double posting your questions

Banfa
Administrator
Aug 8 '08 #9
Oh and while you are reading the posting guidelines read the bit about NOT double posting your questions

Banfa
Administrator
sorry for that without knowing did
Aug 8 '08 #10
Please read our posting guidelines taking note of the sections on choosing a thread title and composing your post (using code tags round the posted code).


You have posted code and said you have a syntax error, this is not enough you should post the exact error you are getting (copy and past it) and you need to tell us on what line of code it is appearing.

However in general

1. You have declared main as returning void. This invokes undefined behaviour, all bets are now off your program could do anything. Examining any further errors after this one is pointless.

Main MUST be declared as either

int main()

or

int main(int argc, char **argp)

that is it must return int.

2. Private data is only accessible inside the class. I don't see you calling any class methods so I assume your syntax error is attempting to access private data. You will need to provide access to the data by either creating a method to return the data, creating a method to do the comparison for you, changing the access specifier of the data being declared (but not this last one is really a hack).





yeah
i have did but again error.

declared a function to get bus no
public:
void get_bus_no()
{
cout<<bus_no;
}

while getting the bus_no i used a temporary variable busno converting it into string , assignin it to bus_no and declared bus_no as string in private.

cout<<"Enter Bus_No::";
cin>>busno;
bus_no=string(busno);

i have declared bus_no as private.
private:
string bus_no;

but still error in this line

if(strcmp(string(obj2[n].get_bus_no()),obj.get_bus_no())==0)
Aug 8 '08 #11
Banfa
9,065 Expert Mod 8TB
declared a function to get bus no
public:
void get_bus_no()
{
cout<<bus_no;
}
This doesn't get the bus number it prints it to the console!


if(strcmp(string(obj2[n].get_bus_no()),obj.get_bus_no())==0)
What type is strcmp expecting for the parameters being passed to it? What type is get_bus_no() returning? Are these types compatible?
Aug 8 '08 #12
Savage
1,764 Expert 1GB
Again,your function is of void type and void functions can't return any value.What you did is just printed the value of bus_no to the screen,but you need to return that value to the calling function.So declare your get_busno() function to return the same type of which is bus_no made.

EDIT:Also bus_no is a int,but it's the string you need to return.
Aug 8 '08 #13
pootle
68
yeah

if(strcmp(string(obj2[n].get_bus_no()),obj.get_bus_no())==0)
When you declare your get_bus_no() method so:

Expand|Select|Wrap|Line Numbers
  1. std::string& get_bus_no() const {
  2.    return bus_no;
  3. }
  4.  
Then you do not need strcmp anymore. The strcmp function is only used for comparing char*. You can find out all about standard library strings and string comparison / manipulation on the internet.
Aug 8 '08 #14

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

Similar topics

0
by: richardkreidl | last post by:
I have the following hash script that I use to compare two text files. 'Class Public Class FileComparison Public Class FileComparisonException Public Enum ExceptionType U 'Unknown A 'Add...
6
by: martin1 | last post by:
I just use DataSet to bind DataSetGrid and display from SQL DB. when starting run in Visual Studio 2005, get "Line 1: Incorrect syntax near '1'" error message from below fill line, ...
4
by: BenCoo | last post by:
Hello, In a Binary Search Tree I get the error : Object must be of type String if I run the form only with the "Dim bstLidnummer As New BinarySearchTree" it works fine. Thanks for any...
20
by: W Karas | last post by:
Would the fear factor for concepts be slightly reduced if, instead of: concept C<typename T> { typename T::S; int T::mem(); int nonmem(); };
13
by: Superman859 | last post by:
Hello everyone. Heads up - c++ syntax is killing me. I do quite well in creating a Java program with very few syntax errors, but I get them all over the place in c++. The smallest little things...
4
by: Travis | last post by:
I'm creating a real simple tree. No sorting and every node can have infinite children. // TreeNode.h #ifndef TREENODE_H #define TREENODE_H #include <iostream> #include <iomanip>
2
by: Frogpolish | last post by:
well after searching ans coming up with nothing i figured id post something in here to see if i could get some help. i have an access db that keeps track of flights that ive flown. its a logbook...
5
Banfa
by: Banfa | last post by:
So I have a little problem, I have a template class and that class contains a template function; now what I want to do is declare that function in the class (or indeed the entire class) as a friend...
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: 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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
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...
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.