473,406 Members | 2,404 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,406 software developers and data experts.

C++ Primer ex 6.20

it works fine. i am posting it to know your views (please remember, i am
at chapter 6, so i have not encountered stuf like Functions):

/* C++ Primer - 4/e
*
* exercise 6.20
* STATEMENT
* write a programme to rad a sequence of strings from standard
input until either the same word occurs twice in succession or all the
words have been read. use the while loop to read a word at a time. use
the break statement to terminate the loop if awords occurs twice in
succession & print that word or else print the message that no word was
repeated.
*
*/
#include <iostream>
#include <string>

int main()
{
std::string cstr, pstr;
bool same_str = false;

while(std::cin >cstr)
{
if(cstr == pstr)
{
same_str = true;
break;
}

pstr = cstr;
}
if(same_str)
{
std::cout << "\n'"
<< cstr
<< "' was repeated\n";
}
else
{
std::cout << "\nno word was repeated\n";
}

return 0;
}

--
http://arnuld.blogspot.com

Aug 6 '07 #1
33 1510
arnuld wrote:
it works fine. i am posting it to know your views (please remember, i am
at chapter 6, so i have not encountered stuf like Functions):
So, what's the point?
Aug 6 '07 #2

"arnuld" <ge*********@gmail.comwrote in message
news:pa****************************@gmail.com...
it works fine. i am posting it to know your views (please remember, i am
at chapter 6, so i have not encountered stuf like Functions):

/* C++ Primer - 4/e
*
* exercise 6.20
* STATEMENT
* write a programme to rad a sequence of strings from standard
input until either the same word occurs twice in succession or all the
words have been read. use the while loop to read a word at a time. use
the break statement to terminate the loop if awords occurs twice in
succession & print that word or else print the message that no word was
repeated.
*
*/
Personally, I'm not in favor of the break statement when other methods can
be easily used. I would rather do (untested code)
#include <iostream>
#include <string>

int main()
{
std::string cstr, pstr;
bool same_str = false;
while(! same_str && std::cin >cstr)
{
if(cstr == pstr)
same_str = true;
pstr = cstr;
}
if(same_str)
std::cout << "\n'" << cstr << "' was repeated\n";
else
std::cout << "\nno word was repeated\n";

return 0;
}

--
http://arnuld.blogspot.com

Aug 6 '07 #3
On 2007-08-06 10:29, Barry wrote:
arnuld wrote:
>it works fine. i am posting it to know your views (please remember, i am
at chapter 6, so i have not encountered stuf like Functions):

So, what's the point?
Point of what?

--
Erik Wikström
Aug 6 '07 #4
On Aug 6, 1:43 pm, "Jim Langston" <tazmas...@rocketmail.comwrote:
Personally, I'm not in favor of the break statement when other methods can
be easily used. I would rather do (untested code)
while(! same_str && std::cin >cstr)
thanks, i will use it :)
-- arnuld
http://arnuld.blogspot.com
Aug 6 '07 #5
On Aug 6, 2:04 am, arnuld <geek.arn...@gmail.comwrote:
On Aug 6, 1:43 pm, "Jim Langston" <tazmas...@rocketmail.comwrote:
Personally, I'm not in favor of the break statement when other methods can
be easily used. I would rather do (untested code)
while(! same_str && std::cin >cstr)

thanks, i will use it :)

-- arnuldhttp://arnuld.blogspot.com
I'm not a fan of unnecessary state variables (same_str) which can be
handled by logic in the code instead.

You can also omit the "return 0;" in C++.

So I propose the following version of your code:

#include <iostream>
#include <string>

int main()
{
std::string cstr, pstr;

while( std::cin >cstr && pstr != cstr )
{
pstr = cstr;
cstr = "";
}

if( cstr != "" )
std::cout << "\n'" << cstr << "' was repeated\n";
else
std::cout << "\nno word was repeated\n";
}

Cheers,
Andre

Aug 6 '07 #6

<in*****@gmail.comwrote in message...
>
You can also omit the "return 0;" in C++.
BUT, why would you want to?

Lazy?

--
Bob R
POVrookie
Aug 6 '07 #7
BobR wrote:
<in*****@gmail.comwrote in message...
>>
You can also omit the "return 0;" in C++.

BUT, why would you want to?

Lazy?
<shrugI don't understand the desire to label somebody right away
with a negative epithet. Every use of a member name in a non-static
member function _can_ be preceded by 'this->'. Do *you* do that?
I don't think so. Why? Lazy? It's unnecessary in *most* cases.

Same here. It's unnecessary to spell out "return 0;". What do you
*gain* (except more typing exercise for your hands) when you spell
it out?

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Aug 6 '07 #8

Jim Langston wrote:
Personally, I'm not in favor of the break statement when other methods can
be easily used. I would rather do (untested code)
[snip]
while(! same_str && std::cin >cstr)
{
if(cstr == pstr)
same_str = true;
pstr = cstr;
}

This causes one unnecessary string assignment, even
though the strings already tested equal. IMO this could
be regarded as pessimizing prematurely (for the sake
of not using a break?). It also causes additional an
comparison. If you did not want to break, the least
you could have done is continue after the if( cstr == pstr ).
Matter of style: Using no braces after if is often a source
of error.

Aug 6 '07 #9
On Aug 6, 8:36 pm, "int2...@gmail.com" <int2...@gmail.comwrote:
On Aug 6, 2:04 am, arnuld <geek.arn...@gmail.comwrote:
On Aug 6, 1:43 pm, "Jim Langston" <tazmas...@rocketmail.comwrote:
Personally, I'm not in favor of the break statement when other methods can
be easily used. I would rather do (untested code)
while(! same_str && std::cin >cstr)
thanks, i will use it :)
I'm not a fan of unnecessary state variables (same_str) which can be
handled by logic in the code instead.
You can also omit the "return 0;" in C++.
You can, but not everything that you can do you should do. The
return is good form, and I would generally criticize a
programmer for omitting it.

--
James Kanze (GABI Software) email:james.kanze:gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Aug 6 '07 #10

Victor Bazarov <v.********@comAcast.netwrote in message...
BobR wrote:
<in*****@gmail.comwrote in message...
>
You can also omit the "return 0;" in C++.
BUT, why would you want to?

Lazy?

<shrugI don't understand the desire to label somebody right away
with a negative epithet.
Not epithetical, just a question.
Every use of a member name in a non-static
member function _can_ be preceded by 'this->'. Do *you* do that?
Sometimes, yes.
I don't think so. Why? Lazy? It's unnecessary in *most* cases.
And in other cases, it makes it clear enough that you don't need to write a
long comment on it.
>
Same here. It's unnecessary to spell out "return 0;". What do you
*gain* (except more typing exercise for your hands) when you spell
it out?
So, we should put this line in the FAQ:

"DO NOT write 'return 0;' in main()"!

<G>

It seems silly to tell a newbie not to do it.
And what about old code in books/net (often posted by newbies):

void main(){
return 0;
}

Now the compiler *should* complain!
(assume an old compiler that didn't flag the 'void'.)

--
Bob R
POVrookie
Aug 6 '07 #11

Jim Langston <ta*******@rocketmail.comwrote in message...
>
"arnuld" <ge*********@gmail.comwrote in message...
it works fine. i am posting it to know your views (please remember, i am
at chapter 6, so i have not encountered stuf like Functions):

/* C++ Primer - 4/e * exercise 6.20
* STATEMENT
* write a programme to rad a sequence of strings from standard
input until either the same word occurs twice in succession or all the
words have been read. use the while loop to read a word at a time. use
the break statement to terminate the loop if awords occurs twice in
succession & print that word or else print the message that no word was
repeated.
*/

Personally, I'm not in favor of the break statement when other methods can
be easily used. I would rather do (untested code)
Unfortunately, the 'break' *is in* the spec.
>
#include <iostream>
#include <string>

int main(){
std::string cstr, pstr;
bool same_str = false;
/*
while(! same_str && std::cin >cstr){
if(cstr == pstr)
same_str = true;
pstr = cstr;
}
*/
while( ! same_str && std::cin >cstr ){
same_str = ( cstr == pstr );
pstr = cstr;
// if( same_str ){ cstr += "break;"; } // for spec :-}
}
// <G>

if(same_str)
std::cout << "\n'" << cstr << "' was repeated\n";
else
std::cout << "\nno word was repeated\n";
return 0;
}
--
Bob R
POVrookie
Aug 6 '07 #12

"werasm" <we****@gmail.comwrote in message
news:11**********************@l70g2000hse.googlegr oups.com...
>
Jim Langston wrote:
>Personally, I'm not in favor of the break statement when other methods
can
be easily used. I would rather do (untested code)

[snip]
> while(! same_str && std::cin >cstr)
{
if(cstr == pstr)
same_str = true;
pstr = cstr;
}


This causes one unnecessary string assignment, even
though the strings already tested equal. IMO this could
be regarded as pessimizing prematurely (for the sake
of not using a break?). It also causes additional an
comparison. If you did not want to break, the least
you could have done is continue after the if( cstr == pstr ).
Matter of style: Using no braces after if is often a source
of error.
RE: the matter of style. I've gone back and forth on this over the years.
I've done it so I always use brackets. I've done it so I don't use brackets
unless I have to. I've done it where I'd use brackets if it was a function
call, etc...

At this point in time I'm not using brackets when not needed and in my own
code it hasn't caused any problems of any importance (something that took me
more than a minute or two to find and fix). But then, I've read many many
lines of code in many many languages over the years in many formats.

I tend to go for the white space format, I.E.

if ( condition )
{
statements
}

rather than

if ( condition ) {
statements
}

Which may make a difference. It would be easy to miss the fact that there
is only one statement if you are not used to seeing a bracket on the
preceeding line.
Aug 7 '07 #13
On Aug 6, 10:03 pm, "Victor Bazarov" <v.Abaza...@comAcast.netwrote:
BobR wrote:
<int2...@gmail.comwrote in message...
You can also omit the "return 0;" in C++.
BUT, why would you want to?
Lazy?
<shrugI don't understand the desire to label somebody right away
with a negative epithet.
There's a question mark. He's not labeling anybody. He's
asking if that is the reason (which is, IMHO, an indirect way to
ask whether there are any other reasons).
Every use of a member name in a non-static
member function _can_ be preceded by 'this->'. Do *you* do that?
I don't think so. Why? Lazy? It's unnecessary in *most* cases.
Coherence. I never use this->. I always put a return at the
end of a function which has a return value. Why should main be
an exception.

In practice, of course, I don't think I've ever written any real
code where it was just "return 0". Any real program will have
output somewhere, output can fail, and if the output fails, you
don't want to return 0. You might as well get into the habit of
writing the return, since it's going to be necessary in any
program that is actually used.
Same here. It's unnecessary to spell out "return 0;". What do you
*gain* (except more typing exercise for your hands) when you spell
it out?
Coherence. Orthogonality.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Aug 7 '07 #14
On Aug 7, 5:32 am, "Jim Langston" <tazmas...@rocketmail.comwrote:

[Totally changing topic, but...]
I tend to go for the white space format, I.E.
if ( condition )
{
statements

}
rather than
if ( condition ) {
statements

}
You put a blank line before the closing brace. I've noticed
this a lot recently (in the past year or two?), but had never
seen it (or at least noticed it) before, and I don't do it
myself.

I'm curious as to why? Is it an intentional decision, or is it
based on some tool, or what?
Which may make a difference. It would be easy to miss the
fact that there is only one statement if you are not used to
seeing a bracket on the preceeding line.
Agreed. Like you, I've used different styles over time. The
important thing is that the code has an "expected" look; if you
change something, and that look isn't there, it strikes you
immediately. If the rule is "a flow control statement is
followed either by a single indented statement, or a { on a line
by itself, not indented", then adding a second statement just
doesn't look right unless you add the {.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Aug 7 '07 #15

James Kanze wrote:

Agreed. Like you, I've used different styles over time. The
important thing is that the code has an "expected" look; if you
change something, and that look isn't there, it strikes you
immediately. If the rule is "a flow control statement is
followed either by a single indented statement, or a { on a line
by itself, not indented", then adding a second statement just
doesn't look right unless you add the {.
Certain style issues don't concern me that much, such
as brace positions and naming conventions, as long as
consistency exists. Other style issues could lead to errors,
and I consider lack of braces one such.

For instance in...

if( condition )
doX();
doY();

doY() could easily be mistaken (by a quick reader) as
part of the condition, where in this case:

if( condition )
{ doX(); }
doY();

or variations therefore, the mistake is less possible.

Werner

Aug 7 '07 #16
werasm <we****@gmail.comwrites:
James Kanze wrote:

>Agreed. Like you, I've used different styles over time. The
important thing is that the code has an "expected" look; if you
change something, and that look isn't there, it strikes you
immediately. If the rule is "a flow control statement is
followed either by a single indented statement, or a { on a line
by itself, not indented", then adding a second statement just
doesn't look right unless you add the {.

Certain style issues don't concern me that much, such
as brace positions and naming conventions, as long as
consistency exists. Other style issues could lead to errors,
and I consider lack of braces one such.

For instance in...

if( condition )
doX();
doY();

doY() could easily be mistaken (by a quick reader) as
part of the condition, where in this case:

if( condition )
{ doX(); }
doY();
And one of the main reasons to advocate the K&R bracketing because in
your example the brackets are easily missed, especially in longer lines.

if (f){
doX();
}
doY();

leaves no room for confusion. Obviously the good tab lengths (Linux src
is 8) and indenting correctly helps eliminate any issue regardless.
>
or variations therefore, the mistake is less possible.

Werner
--
Aug 7 '07 #17
Richard wrote:
[..] Obviously the good tab lengths (Linux
src is 8) [..]
The "tab length" is a setting of a text editor. How can "src" have
any "tab length"? Did you mean indentation offset in spaces? I,
personally, hate tab characters in the source.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Aug 7 '07 #18
On Aug 7, 1:53 pm, werasm <wer...@gmail.comwrote:
James Kanze wrote:
Agreed. Like you, I've used different styles over time. The
important thing is that the code has an "expected" look; if you
change something, and that look isn't there, it strikes you
immediately. If the rule is "a flow control statement is
followed either by a single indented statement, or a { on a line
by itself, not indented", then adding a second statement just
doesn't look right unless you add the {.
Certain style issues don't concern me that much, such
as brace positions and naming conventions, as long as
consistency exists. Other style issues could lead to errors,
and I consider lack of braces one such.
So called style issues certainly vary in importance, from simple
personal taste (indent 3 spaces or 4) to something that is
absolute (no indentation what so ever, or---and I've actually
seen it done---random indentation). I understand your point
concerning the braces; leaving them out does allow one
additional error possibility when modifying code. In practice,
however, *IF* a reasonable style is rigorously adhered to,
missing braces when needed will stick out, and so won't occur.
The importance, here, is that the code is formatting using one,
reasonable style, and that that style does make the braces (or
the absence thereof) stick out.
For instance in...
if( condition )
doX();
doY();
doY() could easily be mistaken (by a quick reader) as
part of the condition,
So don't indent like that. My editor almost won't let me; I
have to do a lot of extra work to get it like that.
where in this case:
if( condition )
{ doX(); }
doY();
or variations therefore, the mistake is less possible.
I don't know. There's still an indentation error on doY(), and
I'm not sure I'd spot the fact that doY() isn't part of the if
immediately.

I might add that while not an absolute rule, like "use
indentation", I'd tend to reject styles which have code
following an open brace or before a closing brace, on the same
line. My rule is more or less that either:

-- the opening brace is on a line by itself, so you can't miss
it, or
-- you always use braces, so you don't have to see it to know
that it's there,
and
-- the closing brace is on a line by itself, or
-- it is always the first non white space, and anything which
follows is part of the "enclosing" statement (else of an
if/else, or while of a do/while).

I currently use the second of each of these rules, but I'd have
no trouble using the first if that's what my co-workers
preferred (and IMHO, omitting the braces is only acceptable if
you use the first).

I might add that regardless of which of the above rules I use,
the opening brace of a function or a class is always on a line
by itself. (Just like in K&R:-).)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Aug 7 '07 #19
"Victor Bazarov" <v.********@comAcast.netwrites:
Richard wrote:
>[..] Obviously the good tab lengths (Linux
src is 8) [..]

The "tab length" is a setting of a text editor. How can "src" have
any "tab length"? Did you mean indentation offset in spaces? I,
personally, hate tab characters in the source.
By tab length I meant the space taken for each indent. In
Linux it is 8 spaces. It's fairly common to refer to the indent length
as the tab length. Apologies for any confusion.

Aug 7 '07 #20
On Aug 7, 2:41 pm, "Alf P. Steinbach" <al...@start.nowrote:
* Victor Bazarov:
Richard wrote:
[..] Obviously the good tab lengths (Linux
src is 8) [..]
The "tab length" is a setting of a text editor. How can "src" have
any "tab length"? Did you mean indentation offset in spaces? I,
personally, hate tab characters in the source.
Bah. As long as you just remember that 1 tab = 3 spaces, it's
a boon to productivity. I think. <g>
Seriously, 4 spaces per tab is of course the only sane choice.
The "standard" is (and always has been) eight. (Don't ask me
why, or who decided, but it goes back long before Unix.) Of
course, most editors will give you any number of options, but
they don't help when outputting the code using other tools; if
your source code has tab characters in it, then you must expand
them to 8, or others will not see the code as you do.

Eight is, of course, a pretty poor choice for indentation. Far
too big. So you don't use tabs for indentation, but spaces (or
a mixture of tabs and spaces). Off hand, for indentation, 2 or
less is too little, and 6 or more too much. As computer
scientists, of course, we favor powers of 2, and the only power
of 2 in the acceptable range is 4, so that's what we use:-).
(But I've maintained code where the original coder used three,
and there was no problem with it. I suspect that five would
also be just as good.)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Aug 7 '07 #21

Richard wrote:

And one of the main reasons to advocate the K&R bracketing because in
your example the brackets are easily missed, especially in longer lines.

if (f){
doX();
}
doY();
This is not my bracketing style, but a style I used to prove a point.
My real style would be:

if( condition )
{
doX();
}

doY();

The point is: Presence of brackets (in any style) make error less
probable.
Personally, I don't mind most ways of bracket usage, as long as it is
present
and consistent.

W

Aug 7 '07 #22

werasm wrote:

Pardon,

Actually...

if( condition )
{
doX();
}

doY();

.... incase I get more comments wrt. synax/style.
>
W
Aug 7 '07 #23
joe
On Aug 7, 9:13 am, James Kanze <james.ka...@gmail.comwrote:
>
The "standard" is (and always has been) eight. (Don't ask me
why, or who decided, but it goes back long before Unix.) Of
course, most editors will give you any number of options, but
they don't help when outputting the code using other tools; if
your source code has tab characters in it, then you must expand
them to 8, or others will not see the code as you do.
And here I always thought it was 8 because the one true terminal for
unix was the adm3a and it used 8 characters for the tab stop. I
actually suspect, but can't prove, that eight characters per tabstop
was chosen for ttys because many of the languages used on punch cards
(such as fortran) started at the eighth character and reserved the
first 7 spaces for line numbers and comment characters.

For what it's worth, I tend to like 4 for tabs. That is probably
because I am both a programmer and old school. That is, I both like
that it is a power of 2 and I like that every two tabs matches up with
a "real" tab. :)

joe

Aug 7 '07 #24
joe wrote:
[..] I
actually suspect, but can't prove, that eight characters per tabstop
was chosen for ttys because many of the languages used on punch cards
(such as fortran) started at the eighth character and reserved the
first 7 spaces for line numbers and comment characters.
It's plausible. Fortran IV has the first and the sixth character
special. So, a "regular" statement starts with the seventh, and it
is conceivable that somebody decided to give it a separate buffer
of two characters, although in those days it wasn't commonly done
(wasting bytes like that, I mean).

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Aug 7 '07 #25
On Aug 7, 1:36 pm, James Kanze <james.ka...@gmail.comwrote:
On Aug 7, 5:32 am, "Jim Langston" <tazmas...@rocketmail.comwrote:
I tend to go for the white space format, I.E.
if ( condition )
{
statements
}
rather than
if ( condition ) {
statements
}
You put a blank line before the closing brace. I've noticed
this a lot recently (in the past year or two?), but had never
seen it (or at least noticed it) before, and I don't do it
myself.
I'm curious as to why? Is it an intentional decision, or is it
based on some tool, or what?

i have also noticed this but i do not use it myself and have not found
the reason why programmers use this.

BTW, i have learnt 2 coding style from this group:
if ( condition )

rather than

if(condition)

&

if ( condition )
{
//...
}

rather than

if ( condition ) {
// ....
}
i have found them more readable and i never thought so earlier about
that. i will stick with them from now on and as K&R2 says: "pick a
style that suits you, then use it consistently" [page - 10]

Aug 7 '07 #26

arnuld <ge*********@gmail.comwrote in message...
>
i have also noticed this but i do not use it myself and have not found
the reason why programmers use this.
BTW, i have learnt 2 coding style from this group:

if ( condition )

rather than

if(condition)

&

if ( condition )
{
//...
}

rather than

if ( condition ) {
// ....
}

i have found them more readable and i never thought so earlier about
that. i will stick with them from now on and as K&R2 says: "pick a
style that suits you, then use it consistently" [page - 10]
I developed my style with influence from B. Eckel, and the style I used in
Assembler since the early '80s.

void MyFunc1(){
// ... stuff ....
return;
} // last brace indented
void MyFunc2(){
// ... stuff ....
if( blah ) callFireDept();
// or:
// if( blah )
// callFireDept(); // long comment here
if( blah2 ){
callPoliceDept();
}
return;
} // last brace indented

Compact, but still able to see where one thing ends and another begins.
In certain situations, I bend my own rules (like really long lines,
indentation gets out of hand, etc.).
[ but, you gotta do it the way the *boss* says! <G]

To each his/her own, use what helps *you*.

Newbies: Just DO NOT put *everything* against the left margin!! PLEASE.

--
Bob R
POVrookie
Aug 7 '07 #27
"James Kanze" <ja*********@gmail.comwrote in message
news:11**********************@d55g2000hsg.googlegr oups.com...
On Aug 7, 5:32 am, "Jim Langston" <tazmas...@rocketmail.comwrote:

[Totally changing topic, but...]
I tend to go for the white space format, I.E.
if ( condition )
{
statements

}
rather than
if ( condition ) {
statements

}
You put a blank line before the closing brace. I've noticed
this a lot recently (in the past year or two?), but had never
seen it (or at least noticed it) before, and I don't do it
myself.

I'm curious as to why? Is it an intentional decision, or is it
based on some tool, or what?
Which may make a difference. It would be easy to miss the
fact that there is only one statement if you are not used to
seeing a bracket on the preceeding line.
Agreed. Like you, I've used different styles over time. The
important thing is that the code has an "expected" look; if you
change something, and that look isn't there, it strikes you
immediately. If the rule is "a flow control statement is
followed either by a single indented statement, or a { on a line
by itself, not indented", then adding a second statement just
doesn't look right unless you add the {.

============

It is strange, but in the message I posted, there was NOT an extra space
before the closing bracket. But you quote me with the space. I don't know
if it was your reader or not, but I look at my post and the extra space is
not there.

That is:

if ( condition )
{
statements
}

should be 4 lines. The if, left bracket, statements, right bracket. If you
see an extra line before the end bracket somethings amiss.
Aug 8 '07 #28
"BobR" <re***********@worldnet.att.netwrote in message
news:NZ*********************@bgtnsc04-news.ops.worldnet.att.net...
>
arnuld <ge*********@gmail.comwrote in message...
>>
i have also noticed this but i do not use it myself and have not found
the reason why programmers use this.
BTW, i have learnt 2 coding style from this group:

if ( condition )

rather than

if(condition)

&

if ( condition )
{
//...
}

rather than

if ( condition ) {
// ....
}

i have found them more readable and i never thought so earlier about
that. i will stick with them from now on and as K&R2 says: "pick a
style that suits you, then use it consistently" [page - 10]

I developed my style with influence from B. Eckel, and the style I used in
Assembler since the early '80s.

void MyFunc1(){
// ... stuff ....
return;
} // last brace indented
void MyFunc2(){
// ... stuff ....
if( blah ) callFireDept();
// or:
// if( blah )
// callFireDept(); // long comment here
if( blah2 ){
callPoliceDept();
}
return;
} // last brace indented

Compact, but still able to see where one thing ends and another begins.
In certain situations, I bend my own rules (like really long lines,
indentation gets out of hand, etc.).
[ but, you gotta do it the way the *boss* says! <G]

To each his/her own, use what helps *you*.

Newbies: Just DO NOT put *everything* against the left margin!! PLEASE.
At one point I indented the bracket and got used to it. But the main reason
I changed is because the auto formatting of my compiler doesn't indent the
bracket.
Aug 8 '07 #29
"Jim Langston" <ta*******@rocketmail.comwrote in message
news:Qh*************@newsfe03.lga...
"BobR" <re***********@worldnet.att.netwrote in message
news:NZ*********************@bgtnsc04-news.ops.worldnet.att.net...
>>
arnuld <ge*********@gmail.comwrote in message...
>>>
i have also noticed this but i do not use it myself and have not found
the reason why programmers use this.
BTW, i have learnt 2 coding style from this group:

if ( condition )

rather than

if(condition)

&

if ( condition )
{
//...
}

rather than

if ( condition ) {
// ....
}

i have found them more readable and i never thought so earlier about
that. i will stick with them from now on and as K&R2 says: "pick a
style that suits you, then use it consistently" [page - 10]

I developed my style with influence from B. Eckel, and the style I used
in
Assembler since the early '80s.

void MyFunc1(){
// ... stuff ....
return;
} // last brace indented
void MyFunc2(){
// ... stuff ....
if( blah ) callFireDept();
// or:
// if( blah )
// callFireDept(); // long comment here
if( blah2 ){
callPoliceDept();
}
return;
} // last brace indented

Compact, but still able to see where one thing ends and another begins.
In certain situations, I bend my own rules (like really long lines,
indentation gets out of hand, etc.).
[ but, you gotta do it the way the *boss* says! <G]

To each his/her own, use what helps *you*.

Newbies: Just DO NOT put *everything* against the left margin!! PLEASE.

At one point I indented the bracket and got used to it. But the main
reason I changed is because the auto formatting of my compiler doesn't
indent the bracket.
Of course I meant IDE and not compiler.
Aug 8 '07 #30
On Aug 7, 5:23 pm, joe <jgr...@DoubleTake.comwrote:
On Aug 7, 9:13 am, James Kanze <james.ka...@gmail.comwrote:
The "standard" is (and always has been) eight. (Don't ask me
why, or who decided, but it goes back long before Unix.) Of
course, most editors will give you any number of options, but
they don't help when outputting the code using other tools; if
your source code has tab characters in it, then you must expand
them to 8, or others will not see the code as you do.
And here I always thought it was 8 because the one true terminal for
unix was the adm3a and it used 8 characters for the tab stop.
As I said, it goes back long before Unix. I first saw it in
Univac transmission protocol around 1975, and the protocol was
considered very outdated even then.
I
actually suspect, but can't prove, that eight characters per tabstop
was chosen for ttys because many of the languages used on punch cards
(such as fortran) started at the eighth character and reserved the
first 7 spaces for line numbers and comment characters.
The relationship with Fortran might have something to do with
it, except that in Fortran (at least, the Fortran of the 1970's
and before), it would have been seven (as you point out).
For what it's worth, I tend to like 4 for tabs. That is probably
because I am both a programmer and old school. That is, I both like
that it is a power of 2 and I like that every two tabs matches up with
a "real" tab. :)
You mean you like 4 as a shift width. That's what I use, too.

In practice, changing tab stops from eight just isn't possible.
There's too much legacy software and equipment which has 8 built
in, and too much modern stuff which is built with 8 built in to
conform with the legacy equipment. Even most of Windows uses 8.
(The problem, of course, is that you don't just view your code
in the editor. You print it, you grep for things in it, you
diff it... And unless you can force all of your toolset to use
the non-standard tabstop, you're stuck.)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Aug 8 '07 #31
On Aug 7, 5:37 pm, "Victor Bazarov" <v.Abaza...@comAcast.netwrote:
joe wrote:
[..] I
actually suspect, but can't prove, that eight characters per tabstop
was chosen for ttys because many of the languages used on punch cards
(such as fortran) started at the eighth character and reserved the
first 7 spaces for line numbers and comment characters.
It's plausible. Fortran IV has the first and the sixth character
special. So, a "regular" statement starts with the seventh, and it
is conceivable that somebody decided to give it a separate buffer
of two characters, although in those days it wasn't commonly done
(wasting bytes like that, I mean).
Wasting bytes wasn't commonly done, but program input was on 80
column punched cards---every line had exactly 80 characters in
it, like it or not. And the Fortran compilers I knew ignored
the last 8 (there comes that multiple again), so that you could
put sequence numbers in them, so that the deck could be
automatically resorted when you dropped it on the floor.

It's interesting to note that Cobol apparently followed
Fortran's example, with the first 7 columns being special. It
also distinguished an Area A (columns 8-11) and an Area B
(columns 12-72). None of which (except for the 72) reinforces
the 8 column tabs.

Some of the early assemblers I used did, however, treating
columns 1-8 as a label, 9-16 as a mnemonic, and 17 and up as the
arguments to the instruction.

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Aug 8 '07 #32
On Aug 7, 6:05 pm, arnuld <geek.arn...@gmail.comwrote:

[...]
BTW, i have learnt 2 coding style from this group:
if ( condition )
rather than
if(condition)
That's a different issue: white space in a line. If you work in
Germany, you'll soon adapt to the second; if you learned
programming in France, the first will seem more natural. The
use of white space is at least partially influenced by local
typographical conventions; the conventions for French use
considerably more white space than those for most other
languages, and those for German somewhat less. The result is
that when I worked in Germany, many of my collegues felt ill at
ease with my style (and I with theirs); we finally wrote an
"unjames" emacs script which removed the extra spaces I put in.

One point worth mentionning is that the parentheses really have
three different roles in C/C++: they are used for grouping, as a
function call operator, or as a fundamental grammatic part of
some statements. I vary my spacing according to use:

x * (y + z) ; // grouping.
f( y + z ) ; // function call.
if ( y == z ) // part of statement.

Basically, spaces outside for grouping, spaces inside for a
function call (but with the ( tightly bound to the function
name), and spaces both inside and outside for part of a
statement.

This isn't, however, something that I would consider essential,
or that I would fight to have, and I have no problem with the
fact that my German collegues wouldn't have used a single space
in any of the examples above (except maybe before the comment).

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Aug 8 '07 #33
On Aug 8, 2:36 am, "Jim Langston" <tazmas...@rocketmail.comwrote:
"James Kanze" <james.ka...@gmail.comwrote in message
[...]
It is strange, but in the message I posted, there was NOT an
extra space before the closing bracket. But you quote me with
the space. I don't know if it was your reader or not, but I
look at my post and the extra space is not there.
That is:
if ( condition )
{
statements

}
should be 4 lines. The if, left bracket, statements, right
bracket. If you see an extra line before the end bracket
somethings amiss.
Google again? That would explain why I see it a lot now (that
I'm using Google as a news reader), and never saw it before
(when I used Gnus, or for a very short time, Thunderbird).

I generally delete it when quoting a posting; I made an
exception this time, since it was the point of my posting.

A quick check with Google showed that my code shows up without
this extra blank line. However, I always indent the code in the
message (to set it off from the rest of the message), so the }
is never in the first column. Maybe that's what it takes to
trigger the Google thing (or whatever it is that's causing it).

Anyway, if it wasn't there to start with, then obviously, it's
not some new convention that's suddenly taking everything by
storm, so there's no problem. I'll just ignore it when I see
it, and continue to delete it when replying.

(I do wish Google would get Google news working correctly,
though. As it is, it crashes Firefox several times a week,
although I've never had Firefox crash on any other page. I
installed a debug version of Firefox, and caught their pages,
and there were so many violations of the HTML standard that I
didn't know where to start.)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Aug 8 '07 #34

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Sandman | last post by:
Could anyone give me a tip about a good primer on object oriented php programming - why I should use it, the benefits, the drawbacks, the bugs, the glory? And, should I upgrade to php5 before...
1
by: Charles L | last post by:
Does anyone know where I can find errata for Stan Lippman's 'C++ Primer 2nd Edition'? Charles Leng
1
by: hugo | last post by:
what is L&L ,people or book?
5
by: hajime | last post by:
I purchased this book: C++ Primer, 4th Edition ISBN: 0201721481 in Australia. The right side of the last three lines on page 231 are not legible. A stain shows a piece of paper was on that part...
7
by: Lycan. Mao.. | last post by:
Hello, I am a newbie in C++ and I'm in trouble in choosing books, I hope some one who can give me some tips. I'm already know C and a little about Scheme, C#, Python, Lua and so on, and now I want...
2
by: W. Watson | last post by:
Is there a primer out there on these two items? I have the Python tutorial, but would like either a Tkinter tutorial/primer to supplement it, or a primer/tutorial that addresses both. Maybe there's...
20
by: arnuld | last post by:
I get an error, can't find what is the problem: /* C++ Primer - 4/e * * Chapter 8, exercise 8.3 * STATEMENT * write a function that takes and returns an istream&. the function should read...
2
by: xianwei | last post by:
First, typedef struct pair { Node *parent; Node *child; } Pair; static Pair SeekItem(cosnt Item *pI, const Tree *pTree) { Pair look;
1
by: Kveldulv | last post by:
Hi all, here is the code: http://pastebin.com/m6e74d36b I'm stuck at highfink constructor, last line before #endif. As parameters, I have reference to one parent class and int member of another...
0
by: cincerite | last post by:
Hello , guys , I'm reading C++ Primer 3rd edition recently.I tried to download the errata of it from Stan Lippman's Home Page:http:// staff.develop.com/slip/ ,but it says:We're Sorry, we could not...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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:
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
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...

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.