digitalmars.D.learn - small questions
- harry <harry potter.com> Jul 27 2009
- BCS <ao pathlink.com> Jul 27 2009
- Harry <harry potter.com> Jul 27 2009
- BCS <ao pathlink.com> Jul 28 2009
Hello D community,
Thank you for the interesting D :)
Before sorry about bad English.
class Foo{int i;this(int ii){i = ii}}
new Foo();
new Foo();
Is iterator possible?
foreach(Foo foo ;Foo)
foo.i++;
It get opapply error?
add data in text.
\0 \1 \2 \3
Is ok ?
thank you!
Jul 27 2009
Reply to Harry,Hello D community, Thank you for the interesting D :) Before sorry about bad English. class Foo{int i;this(int ii){i = ii}} new Foo(); new Foo(); Is iterator possible? foreach(Foo foo ;Foo) foo.i++; I get opapply error?
If you want to iterate over several Foo objects you can put them in an array like this: Foo[] fooArr = [ new Foo(1), new Foo(2) ]; foreach(Foo foo; fooArr) foo.i++; If you want to iterate over every Foo ever created, you will need to do something else (like have the constructor keep a list of Foo objects it has created).
Jul 27 2009
BCS Wrote:Reply to Harry,Hello D community, Thank you for the interesting D :) Before sorry about bad English. class Foo{int i;this(int ii){i = ii}} new Foo(); new Foo(); Is iterator possible? foreach(Foo foo ;Foo) foo.i++; I get opapply error?
If you want to iterate over several Foo objects you can put them in an array like this: Foo[] fooArr = [ new Foo(1), new Foo(2) ]; foreach(Foo foo; fooArr) foo.i++; If you want to iterate over every Foo ever created, you will need to do something else (like have the constructor keep a list of Foo objects it has created).
static array in class you mean?
Jul 27 2009
Reply to Harry,BCS Wrote:Reply to Harry,Hello D community, Thank you for the interesting D :) Before sorry about bad English. class Foo{int i;this(int ii){i = ii}} new Foo(); new Foo(); Is iterator possible? foreach(Foo foo ;Foo) foo.i++; I get opapply error?
an array like this: Foo[] fooArr = [ new Foo(1), new Foo(2) ]; foreach(Foo foo; fooArr) foo.i++; If you want to iterate over every Foo ever created, you will need to do something else (like have the constructor keep a list of Foo objects it has created).
static array in class you mean?
That would be one options.
Jul 28 2009








BCS <ao pathlink.com>