Welcome
Username or Email:

Password:


Missing Code




[ ]
[ ]
Online
  • Guests: 12
  • Members: 0
  • Newest Member: omjtest
  • Most ever online: 396
    Guests: 396, Members: 0 on 12 Jan : 12:51
Members Birthdays:
One birthday today, congrats!
Vaxian (17)


Next birthdays
05/21 Dalus (34)
05/21 Kizmo (37)
05/22 Skynet (32)
Contact
If you need assistance, please send an email to forum at 4hv dot org. To ensure your email is not marked as spam, please include the phrase "4hv help" in the subject line. You can also find assistance via IRC, at irc.shadowworld.net, room #hvcomm.
Support 4hv.org!
Donate:
4hv.org is hosted on a dedicated server. Unfortunately, this server costs and we rely on the help of site members to keep 4hv.org running. Please consider donating. We will place your name on the thanks list and you'll be helping to keep 4hv.org alive and free for everyone. Members whose names appear in red bold have donated recently. Green bold denotes those who have recently donated to keep the server carbon neutral.


Special Thanks To:
  • Aaron Holmes
  • Aaron Wheeler
  • Adam Horden
  • Alan Scrimgeour
  • Andre
  • Andrew Haynes
  • Anonymous000
  • asabase
  • Austin Weil
  • barney
  • Barry
  • Bert Hickman
  • Bill Kukowski
  • Blitzorn
  • Brandon Paradelas
  • Bruce Bowling
  • BubeeMike
  • Byong Park
  • Cesiumsponge
  • Chris F.
  • Chris Hooper
  • Corey Worthington
  • Derek Woodroffe
  • Dalus
  • Dan Strother
  • Daniel Davis
  • Daniel Uhrenholt
  • datasheetarchive
  • Dave Billington
  • Dave Marshall
  • David F.
  • Dennis Rogers
  • drelectrix
  • Dr. John Gudenas
  • Dr. Spark
  • E.TexasTesla
  • eastvoltresearch
  • Eirik Taylor
  • Erik Dyakov
  • Erlend^SE
  • Finn Hammer
  • Firebug24k
  • GalliumMan
  • Gary Peterson
  • George Slade
  • GhostNull
  • Gordon Mcknight
  • Graham Armitage
  • Grant
  • GreySoul
  • Henry H
  • IamSmooth
  • In memory of Leo Powning
  • Jacob Cash
  • James Howells
  • James Pawson
  • Jeff Greenfield
  • Jeff Thomas
  • Jesse Frost
  • Jim Mitchell
  • jlr134
  • Joe Mastroianni
  • John Forcina
  • John Oberg
  • John Willcutt
  • Jon Newcomb
  • klugesmith
  • Leslie Wright
  • Lutz Hoffman
  • Mads Barnkob
  • Martin King
  • Mats Karlsson
  • Matt Gibson
  • Matthew Guidry
  • mbd
  • Michael D'Angelo
  • Mikkel
  • mileswaldron
  • mister_rf
  • Neil Foster
  • Nick de Smith
  • Nick Soroka
  • nicklenorp
  • Nik
  • Norman Stanley
  • Patrick Coleman
  • Paul Brodie
  • Paul Jordan
  • Paul Montgomery
  • Ped
  • Peter Krogen
  • Peter Terren
  • PhilGood
  • Richard Feldman
  • Robert Bush
  • Royce Bailey
  • Scott Fusare
  • Scott Newman
  • smiffy
  • Stella
  • Steven Busic
  • Steve Conner
  • Steve Jones
  • Steve Ward
  • Sulaiman
  • Thomas Coyle
  • Thomas A. Wallace
  • Thomas W
  • Timo
  • Torch
  • Ulf Jonsson
  • vasil
  • Vaxian
  • vladi mazzilli
  • wastehl
  • Weston
  • William Kim
  • William N.
  • William Stehl
  • Wesley Venis
The aforementioned have contributed financially to the continuing triumph of 4hv.org. They are deserving of my most heartfelt thanks.
Forums
4hv.org :: Forums :: Computer Science
« Previous topic | Next topic »   

C++ question

Move Thread LAN_403
StevenCaton
Thu Apr 15 2010, 05:11AM Print
StevenCaton Registered Member #1845 Joined: Fri Dec 05 2008, 05:38AM
Location: California
Posts: 211
Suppose a block of code asks a user to enter a y or n, and then I want to check if the user just hits enter.
If I declare a variable char to hold the value, can I check if they just simply hit enter, instead of entering the y or n.
This is easily done if I declare a string to hold the y or n. I just check for an empty string, (like "") but I get an error if I check for a '' (like an empty character)
I asked this question to a professional programmer yesterday, and he said it wasn't possible to check for the empty character, at least the way I have proposed, but really? Why?



//Code that works

cout << "Enter a y or n ";
string letter;
getline(cin,letter); //assume user just hits enter and doesn't type a letter

if (letter == "")
{
cout << "Hey, you didn't enter a letter";
}




//Code that doesn't work, it issues and empty character constant error, or some crap like that

cout << "Enter a y or n ";
char letter;
cin >> letter; //assume user just hits enter and doesn't type a letter

if (letter == '')
{
cout << "Hey, you didn't enter a letter";
}
Back to top
Bjørn
Thu Apr 15 2010, 09:53AM
Bjørn Registered Member #27 Joined: Fri Feb 03 2006, 02:20AM
Location: Hyperborea
Posts: 2058
A string can contain any reasonable number of characters including zero characters, that is why the first program works.

A char is really an integer, it can hold a any number within a certain range. That range does not contain "not a number". So you can't store "not a number" in a char.

It would be the same as doing:
int a;
a = ;
Back to top
Steve Conner
Thu Apr 15 2010, 10:40AM
Steve Conner Registered Member #30 Joined: Fri Feb 03 2006, 10:52AM
Location: Glasgow, Scotland
Posts: 6706
Doing this kind of thing in C/C++ is difficult and annoying. When you use << to get input, I guess it returns nothing if you just press enter. But << should only be used with a C++ string, not a char.

Also as Bjorn points out, a C++ string can have the property of "emptiness" but a char can't. The closest thing a char could be is NULL, but even that is a valid ASCII character, so it's still not "empty". That's why the professional programmer said that it can't be done.

Below I showed code that would give you the result "y" or "n" in a char. But you probably should stick with C++ "string"s throughout, they behave more like the kids of today expect strings to behave in VB, PHP and so on.

//Here's how I would kludge it. I haven't tested it though. Watch out for Unicode problems on Windows.

cout << "Enter a y or n ";
string letter;
char checked_letter;

getline(cin,letter); //assume user just hits enter and doesn't type a letter

if (letter == "")
{
cout << "Hey, you didn't enter a letter";
checked_letter = NULL;
}
else
{
// Convert C++ string to regular one and take first character
checked_letter = letter.c_str()[0];
}
Back to top

Moderator(s): Chris Russell, Noelle, Alex, Tesladownunder, Dave Marshall, Dave Billington, Bjørn, Steve Conner, Wolfram, Kizmo, Mads Barnkob

Go to:

Powered by e107 Forum System
 
Legal Information
This site is powered by e107, which is released under the GNU GPL License. All work on this site, except where otherwise noted, is licensed under a Creative Commons Attribution-ShareAlike 2.5 License. By submitting any information to this site, you agree that anything submitted will be so licensed. Please read our Disclaimer and Policies page for information on your rights and responsibilities regarding this site.