473,395 Members | 1,383 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.

[C++ Question] For loop Multiple Initialization

Hi C++ users,

for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}

example from: http://www.tech-faq.com/iterations.shtml
Is not valid in my eclipse cdt.
Is there multiple initialization in C++? How can we use that?

Thanks!

Charlie
Nov 3 '08 #1
10 58166
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

ch*************@gmail.com wrote:
Hi C++ users,

for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}

example from: http://www.tech-faq.com/iterations.shtml
Is not valid in my eclipse cdt.
Is there multiple initialization in C++? How can we use that?
That way is correct:

for (int i=0, j=10; i<5 && j<10; i++, j--) {}

Unless I'm wrong, there's no way to initialize variables of different
types in that part of for loop.

Pawel Dziepak

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iEYEARECAAYFAkkPb5AACgkQPFW+cUiIHNo4jQCff0Shc8Rmg8 IbW7OYSDPqVu5g
7dsAoLirnTWj3mIPx2eN9mnZPUNBsYi1
=4L+S
-----END PGP SIGNATURE-----
Nov 3 '08 #2
On Nov 3, 1:39*pm, Pawel Dziepak <pdzie...@quarnos.orgwrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

charlie.xia....@gmail.com wrote:
Hi C++ users,
for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}
example from:http://www.tech-faq.com/iterations.shtml
Is not valid in my eclipse cdt.
Is there multiple initialization in C++? How can we use that?

That way is correct:

for (int i=0, j=10; i<5 && j<10; i++, j--) {}

Unless I'm wrong, there's no way to initialize variables of different
types in that part of for loop.

Pawel Dziepak
it works!
thanks
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Fedora -http://enigmail.mozdev.org

iEYEARECAAYFAkkPb5AACgkQPFW+cUiIHNo4jQCff0Shc8Rmg8 IbW7OYSDPqVu5g
7dsAoLirnTWj3mIPx2eN9mnZPUNBsYi1
=4L+S
-----END PGP SIGNATURE-----
Nov 3 '08 #3
On Nov 3, 10:29*pm, "charlie.xia....@gmail.com" <lxia....@gmail.com>
wrote:
for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}
example from:http://www.tech-faq.com/iterations.shtml
Is not valid in my eclipse cdt.
It's not valid in C++ either. Just another case of someone who
doesn't know the language trying to write about it.
Is there multiple initialization in C++?
Sort of. You can only write one declaration statement, but it
can define multiple variables, e.g.:

for ( int i = 0, j = 10 ; ... )

Generally speaking, i'ld avoid it, because it is confusing to
have multiple variables defined in the same declaration. But
there are probably exceptions; I know that some people like:

for ( Container::const_iterator
current = c.begin(), end = c.end() ;
current != end ;
++ current )

I'm not that fond of it, but if you raise it to the level of a
"standard idiom" in your code, I don't think I'd have any real
objections.

--
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
Nov 3 '08 #4
Pawel Dziepak wrote:
ch*************@gmail.com wrote:
for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}
example from: http://www.tech-faq.com/iterations.shtml
Is not valid in my eclipse cdt.
Is there multiple initialization in C++? How can we use that?
That way is correct:
for (int i=0, j=10; i<5 && j<10; i++, j--) {}
Unless I'm wrong, there's no way to initialize variables of
different types in that part of for loop.
for ( int i = 0 , *p = &i ; ... )

:-).

Not that I'd like to maintain code which did such things.

--
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
Nov 3 '08 #5
Pawel Dziepak wrote:
ch*************@gmail.com wrote:
for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}

example from: http://www.tech-faq.com/iterations.shtml
Is not valid in my eclipse cdt.
Is there multiple initialization in C++? How can we use that?

That way is correct:

for (int i=0, j=10; i<5 && j<10; i++, j--) {}

Unless I'm wrong, there's no way to initialize variables of different
types in that part of for loop.
I'll probably regret this, but I believe you can:

double d;
int* p;
for ( char c = (d = 1.234, p = new int, 'X'); ...
Nov 4 '08 #6
On 2008-11-03 23:03:16 -0500, bl********@gishpuppy.com (blargg) said:
Pawel Dziepak wrote:
>ch*************@gmail.com wrote:
>>for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}

example from: http://www.tech-faq.com/iterations.shtml
Is not valid in my eclipse cdt.
Is there multiple initialization in C++? How can we use that?

That way is correct:

for (int i=0, j=10; i<5 && j<10; i++, j--) {}

Unless I'm wrong, there's no way to initialize variables of different
types in that part of for loop.

I'll probably regret this, but I believe you can:

double d;
int* p;
for ( char c = (d = 1.234, p = new int, 'X'); ...
Or, less cryptically,

double d;
int *p;
char c;
for (c = 'X', d = 1.234, p = new int; ...

Now, technically, that's not initialization, but it may well be what
was actually meant.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Nov 4 '08 #7
But actually I want these variables only in the scope of for loop.
Keep the initialization and increment in the for statement is the only
neat way I can think of.
Isn't it?
On Nov 4, 2:20*am, Pete Becker <p...@versatilecoding.comwrote:
On 2008-11-03 23:03:16 -0500, blargg....@gishpuppy.com (blargg) said:
Pawel Dziepak wrote:
charlie.xia....@gmail.com wrote:
for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}
>example from:http://www.tech-faq.com/iterations.shtml
Is not valid in my eclipse cdt.
Is there multiple initialization in C++? How can we use that?
That way is correct:
for (int i=0, j=10; i<5 && j<10; i++, j--) {}
Unless I'm wrong, there's no way to initialize variables of different
types in that part of for loop.
I'll probably regret this, but I believe you can:
* * double d;
* * int* p;
* * for ( char c = (d = 1.234, p = new int, 'X'); ...

Or, less cryptically,

double d;
int *p;
char c;
for (c = 'X', d = 1.234, p = new int; ...

Now, technically, that's not initialization, but it may well be what
was actually meant.

--
* Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)
Nov 6 '08 #8
On 2008-11-06 12:16:21 -0500, "ch*************@gmail.com"
<lx******@gmail.comsaid:
On Nov 4, 2:20Â*am, Pete Becker <p...@versatilecoding.comwrote:
>On 2008-11-03 23:03:16 -0500, blargg....@gishpuppy.com (blargg) said:
>>Pawel Dziepak wrote:
charlie.xia....@gmail.com wrote:
for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}
>>>>example from:http://www.tech-faq.com/iterations.shtml
Is not valid in my eclipse cdt.
Is there multiple initialization in C++? How can we use that?
>>>That way is correct:
>>>for (int i=0, j=10; i<5 && j<10; i++, j--) {}
>>>Unless I'm wrong, there's no way to initialize variables of different
types in that part of for loop.
>>I'll probably regret this, but I believe you can:
>>Â* Â* double d;
Â* Â* int* p;
Â* Â* for ( char c = (d = 1.234, p = new int, 'X'); ...

Or, less cryptically,

double d;
int *p;
char c;
for (c = 'X', d = 1.234, p = new int; ...

Now, technically, that's not initialization, but it may well be what
was actually meant.
But actually I want these variables only in the scope of for loop.
Keep the initialization and increment in the for statement is the only
neat way I can think of.
Isn't it?
You can't have everything. In general, though, a for loop that requires
three loop control variables is almost certainly a mistake.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Nov 6 '08 #9
ch*************@gmail.com wrote:
On Nov 4, 2:20 am, Pete Becker <p...@versatilecoding.comwrote:
On 2008-11-03 23:03:16 -0500, blargg....@gishpuppy.com (blargg) said:
Pawel Dziepak wrote:
>charlie.xia....@gmail.com wrote:
>>for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}
>>example from:http://www.tech-faq.com/iterations.shtml
>>Is not valid in my eclipse cdt.
>>Is there multiple initialization in C++? How can we use that?
>That way is correct:
>for (int i=0, j=10; i<5 && j<10; i++, j--) {}
>Unless I'm wrong, there's no way to initialize variables of different
>types in that part of for loop.
I'll probably regret this, but I believe you can:
double d;
int* p;
for ( char c = (d = 1.234, p = new int, 'X'); ...
Or, less cryptically,

double d;
int *p;
char c;
for (c = 'X', d = 1.234, p = new int; ...

Now, technically, that's not initialization, but it may well be what
was actually meant.

But actually I want these variables only in the scope of for loop.
Keep the initialization and increment in the for statement is the only
neat way I can think of.
Isn't it?
The for loop is for common loops that have a single variable that is
initialized, tested, and advanced. If it were made to handle every
possible loop, it would lose its usefulness. In fact, such a more general
loop construct already exists as a combination of a compound statement
({}) with a while or do-while loop in it. What do you gain by trying to
jam complicated things into a for loop anyway?

Also, please don't top-post, and don't quote signatures (see
<http://www.netmeister.org/news/learn2quote.html>).
Nov 7 '08 #10
On Nov 7, 1:08*am, blargg....@gishpuppy.com (blargg) wrote:
charlie.xia....@gmail.com wrote:
On Nov 4, 2:20 am, Pete Becker <p...@versatilecoding.comwrote:
On 2008-11-03 23:03:16 -0500, blargg....@gishpuppy.com (blargg) said:
Pawel Dziepak wrote:
charlie.xia....@gmail.com wrote:
>for(int i=0,int j=10 ; i<5&&j<10 ; i++ , j--) {}
>example from:http://www.tech-faq.com/iterations.shtml
>Is not valid in my eclipse cdt.
>Is there multiple initialization in C++? How can we use that?
That way is correct:
for (int i=0, j=10; i<5 && j<10; i++, j--) {}
Unless I'm wrong, there's no way to initialize variables of different
types in that part of for loop.
I'll probably regret this, but I believe you can:
* * double d;
* * int* p;
* * for ( char c = (d = 1.234, p = new int, 'X'); ...
Or, less cryptically,
double d;
int *p;
char c;
for (c = 'X', d = 1.234, p = new int; ...
Now, technically, that's not initialization, but it may well be what
was actually meant.
But actually I want these variables only in the scope of for loop.
Keep the initialization and increment in the for statement is the only
neat way I can think of.
Isn't it?

The for loop is for common loops that have a single variable that is
initialized, tested, and advanced. If it were made to handle every
possible loop, it would lose its usefulness. In fact, such a more general
loop construct already exists as a combination of a compound statement
({}) with a while or do-while loop in it. What do you gain by trying to
jam complicated things into a for loop anyway?

Also, please don't top-post, and don't quote signatures (see
<http://www.netmeister.org/news/learn2quote.html>).
Good to know. Thanks all.
Nov 14 '08 #11

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

Similar topics

5
by: alex | last post by:
Hi, it is possible to define multiple initialization methods so that the method is used that fits? I am thinking of something like this: def __init__(self, par1, par2): self.init(par1,...
1
by: Knocked Wood | last post by:
Hi, I looked around and can't find anything on this at all and can not get it to work for IE. I'm trying to loop multiple sounds on a game, with three unique variables, when a link is clicked....
8
by: J. Black | last post by:
Hello everyone - I've been developing an incident tracking and reporting system for an emergency services outfit that I work with part time. It's going well, except for one fly in the ointment....
10
by: PCHOME | last post by:
Hi! Would someone please help me thess C error(in gcc on Linux)? The compiler continues to give me: readLP.o: In function `Input_Problem': readLP.o(.text+0x0): multiple definition of...
2
by: mike | last post by:
Hello fellow C++ experts, is there any dramatic difference between multiple inheritance: struct MyType4 : MyType1, MyType2, MyType3 { int MyInt; }; and: struct MyType4 {
2
by: timlyee | last post by:
int *p = new int; auto_ptr<intap1 = p; //will fail on 3 1 auto_ptr<intap1(p); //ok 2 *ap1 = 12; // 3 the first situation has called :...
14
by: Bill Reid | last post by:
OK, let's say that have a function menu structure declaration like this (since I basically do): typedef struct function_item { char *descrip; void(*function)(void); } t_function_item; ...
6
by: Mr. K.V.B.L. | last post by:
I want to start a map with keys but an empty vector<string>. Not sure what the syntax is here. Something like: map<string, vector<string MapVector; MapVector.insert(make_pair("string1",...
3
by: =?Utf-8?B?Y2hyaXNiZW4=?= | last post by:
Here are the codes Queue<string> q = new Queue<string>; Console.WriteLine(q.Count + ""); The program will crash since q is null. So my question is that what is the best way for new to...
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: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
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
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,...
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...

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.