What is the ideal length of a Java File?

A very general question?What is the ideal length (no of lines) of a java file? I know there are no hard core rules. I Just trying to improve my coding style and techniques.thks.
[205 byte] By [saracgia] at [2007-11-26 17:28:22]
# 1
157
ScarletPimpernela at 2007-7-8 23:56:17 > top of Java-index,Java Essentials,New To Java...
# 2
I would rather take it as 517? instead of 157..Expecting some genuine answers
saracgia at 2007-7-8 23:56:17 > top of Java-index,Java Essentials,New To Java...
# 3
@Op. Why do you think that there is an ideal length?What should you do if a class only is 40 lines? Add dummy code so that you will reach the ideal length?Kaj
kajbja at 2007-7-8 23:56:17 > top of Java-index,Java Essentials,New To Java...
# 4
> I would rather take it as 517? instead of 157..Why should a class be long?
kajbja at 2007-7-8 23:56:17 > top of Java-index,Java Essentials,New To Java...
# 5

You need to keep an eye out for the "weight" of your objects, and bigger (read more code) objects do tend to be heavier. But this really isn't a prime design consideration.... it's more of "refactoring for performance once it works" type consideration.

It's not exactly rocket surgery.

Keith.

corlettka at 2007-7-8 23:56:17 > top of Java-index,Java Essentials,New To Java...
# 6
> You need to keep an eye out for the "weight" of your> objects, and bigger (read more code) objects do tend> to be heavier. What? The code isn't duplicated for each instance.Kaj
kajbja at 2007-7-8 23:56:17 > top of Java-index,Java Essentials,New To Java...
# 7
80 chars per line of code, if the line has more chars put it in the next line.In eclipse u can set a guide line in window>preference>workbench>Editors>textEditor>ShowPrintMarginTC
AbiSSa at 2007-7-8 23:56:17 > top of Java-index,Java Essentials,New To Java...
# 8
I'm aluding to the global object... ever maintained java written by a c++ programmer?
corlettka at 2007-7-8 23:56:17 > top of Java-index,Java Essentials,New To Java...
# 9

> 80 chars per line of code, if the line has more chars

> put it in the next line.

> In eclipse u can set a guide line in

> window>preference>workbench>Editors>textEditor>ShowPri

> ntMargin

>

> TC

Uhm, maybe you want to reread the OP's question.

PhHeina at 2007-7-8 23:56:17 > top of Java-index,Java Essentials,New To Java...
# 10

> > 80 chars per line of code, if the line has more

> chars

> > put it in the next line.

> > In eclipse u can set a guide line in

> >

> window>preference>workbench>Editors>textEditor>ShowPri

>

> > ntMargin

> >

> > TC

> Uhm, maybe you want to reread the OP's question.

Maybe someone can read my ques regarding the debug mode and give some answers ?

Just tellin whatever I know abt the standards boss

-TC

AbiSSa at 2007-7-8 23:56:18 > top of Java-index,Java Essentials,New To Java...
# 11

> 80 chars per line of code, if the line has more chars

> put it in the next line.

> In eclipse u can set a guide line in

> window>preference>workbench>Editors>textEditor>ShowPri

> ntMargin

>

> TC

nonsense, these days. that's a throwback to when everyone was compiling on terminals, where 80 chars was the width of the terminal screen. we had that mandated in our coding standards where I used to work. first time I did a compile-onsite, I found out why. but it's irrelevant now`

and nothing to do with the length of a class or file, either :-)

georgemca at 2007-7-8 23:56:18 > top of Java-index,Java Essentials,New To Java...
# 12
> Maybe someone can read my ques regarding the debug> mode and give some answers ?> No, thanks
PhHeina at 2007-7-8 23:56:18 > top of Java-index,Java Essentials,New To Java...
# 13

> nonsense, these days. that's a throwback to when

> everyone was compiling on terminals, where 80 chars

> was the width of the terminal screen. we had that

> mandated in our coding standards where I used to

> work. first time I did a compile-onsite, I found out

> why. but it's irrelevant now`

It's not totally irrelevant. (Ok, it's not relevant at all to the topic of the thread)

Line lengths of 80 characters reduces scrolling and makes it possible to print on paper (but who cares about that?)

kajbja at 2007-7-8 23:56:18 > top of Java-index,Java Essentials,New To Java...
# 14

> nonsense, these days. that's a throwback to when

> everyone was compiling on terminals, where 80 chars

> was the width of the terminal screen. we had that

> mandated in our coding standards where I used to

> work. first time I did a compile-onsite, I found out

> why. but it's irrelevant now`

>

> and nothing to do with the length of a class or file,

> either :-)

Tats a cool piece of info .. Thanx...

(C hw easily I'm getting corrected now Mr. George :-) )

So about the debug question.... Some one pls..... i'm breaking my head over it

AbiSSa at 2007-7-8 23:56:18 > top of Java-index,Java Essentials,New To Java...
# 15

> > nonsense, these days. that's a throwback to when

> > everyone was compiling on terminals, where 80

> chars

> > was the width of the terminal screen. we had that

> > mandated in our coding standards where I used to

> > work. first time I did a compile-onsite, I found

> out

> > why. but it's irrelevant now`

> >

> > and nothing to do with the length of a class or

> file,

> > either :-)

>

>

> Tats a cool piece of info .. Thanx...

> (C hw easily I'm getting corrected now Mr. George :-)

> )

yeh I noticed ;-)

georgemca at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 16

Acually a java class is a ideal class that not depends on the no of line in it....it should be well structured..containing re-usuable codes and clear seperation logical block in a method to do the specific task as like that if u want to do a specific task call the method...and method structure shuold not be so hezy and should't contain large no of lines...better to break each functionality to a perticular method...that will enhance the re-useability

debduttaa at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 17

> A very general question?

>

> What is the ideal length (no of lines) of a java

> file? I know there are no hard core rules.

>

> I Just trying to improve my coding style and

> techniques.

Let each class represent one concept only and be functionally complete. Then you'll find that you automatically get a log-lin distribution. A few classes will be long and many will be short and the rest will be in between.

debduttaa at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 18
> > > A few> classes will be long and many will be short and the> rest will be in between.So on average maybe 157 lines?
ScarletPimpernela at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 19
> > > > > A few> > classes will be long and many will be short and> the> > rest will be in between.> > So on average maybe 157 lines?We have now completed a full circle :)
kajbja at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 20

> > > >

> > > A few

> > > classes will be long and many will be short and

> > the

> > > rest will be in between.

> >

> > So on average maybe 157 lines?

>

> We have now completed a full circle :)

Yes! a full 314 degrees.

ScarletPimpernela at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 21
> Yes! a full 314 degrees.thsi also perfect tempreture to cook turkey. rember thsi advices.
majindaa at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 22
> > > > > A few> > classes will be long and many will be short and the> > rest will be in between.> > So on average maybe 157 lines?No much shorter like 27.
majindaa at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 23

> > > >

> > > A few

> > > classes will be long and many will be short and

> the

> > > rest will be in between.

> >

> > So on average maybe 157 lines?

>

> No much shorter like 27.

You had 37 then you change it 27.What difference does it make?

zadoka at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 24
> You had 37 then you change it 27.What difference> does it make?10
YoGeea at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 25

> > > > >

> > > > A few

> > > > classes will be long and many will be short

> and

> > the

> > > > rest will be in between.

> > >

> > > So on average maybe 157 lines?

> >

> > No much shorter like 27.

>

> You had 37 then you change it 27.What difference

> does it make?

She knows that she will be forced to negotiate, and she wants to close the deal on 42 so she can't start with 37.

kajbja at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 26
> > Yes! a full 314 degrees.> > thsi also perfect tempreture to cook turkey. rember> thsi advices.As it happens <cough> I can get my hand on some..., <cough>excuse me,... some very cheap turkeys, about 160000 to be exact.
ScarletPimpernela at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 27
> > Yes! a full 314 degrees.> > thsi also perfect tempreture to cook turkey. rember> thsi advices.Yesterday was an invigorating 7 F (-13 C) with a wind chill of -15 F (-26 C).Today is just as refreshing.
filestreama at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 28
> A very general question?> > What is the ideal length (no of lines) of a java> file? I know there are no hard core rules. 1. The enter key is the tool of the devil!
mlka at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 29

> > > Yes! a full 314 degrees.

> >

> > thsi also perfect tempreture to cook turkey.

> rember

> > thsi advices.

>

> As it happens <cough> I can get my hand on some...,

> <cough>excuse me,... some very cheap turkeys, about

> 160000 to be exact.

Though I'd make sure they was cooked all the way through, cant be too careflu.

ScarletPimpernela at 2007-7-21 17:04:38 > top of Java-index,Java Essentials,New To Java...
# 30

> > > > Yes! a full 314 degrees.

> > >

> > > thsi also perfect tempreture to cook turkey.

> > rember

> > > thsi advices.

> >

> > As it happens <cough> I can get my hand on

> some...,

> > <cough>excuse me,... some very cheap turkeys,

> about

> > 160000 to be exact.

>

> Though I'd make sure they was cooked all the way

> through, cant be too careflu.

Car boot sales are a tremendous value.

filestreama at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 31

> > > > > Yes! a full 314 degrees.

> > > >

> > > > thsi also perfect tempreture to cook turkey.

> > > rember

> > > > thsi advices.

> > >

> > > As it happens <cough> I can get my hand on

> > some...,

> > > <cough>excuse me,... some very cheap turkeys,

> > about

> > > 160000 to be exact.

> >

> > Though I'd make sure they was cooked all the way

> > through, cant be too careflu.

>

> Car boot sales are a tremendous value.

And meat raffles!

ScarletPimpernela at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 32
> You had 37 then you change it 27.What difference> does it make?Peace of mind.
ScarletPimpernela at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 33
> > You had 37 then you change it 27.What> difference> > does it make?> > Peace of mind.[url= http://primes.utm.edu/curios/page.php/37.html]Fear of prime numbers :).[/url]
kevjavaa at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 34

> > > > As it happens <cough> I can get my hand on

> > > some...,

> > > > <cough>excuse me,... some very cheap turkeys,

> > > about

> > > > 160000 to be exact.

> > >

> > > Though I'd make sure they was cooked all the way

> > > through, cant be too careflu.

> >

> > Car boot sales are a tremendous value.

>

> And meat raffles!

meat bingo?

filestreama at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 35

> > > Yes! a full 314 degrees.

> >

> > thsi also perfect tempreture to cook turkey.

> rember

> > thsi advices.

>

> Yesterday was an invigorating 7 F (-13 C) with a

> wind chill of -15 F (-26 C).

>

> Today is just as refreshing.

Lucky *******.

jverda at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 36

> > nonsense, these days. that's a throwback to when

> > everyone was compiling on terminals, where 80

> chars

> > was the width of the terminal screen. we had that

> > mandated in our coding standards where I used to

> > work. first time I did a compile-onsite, I found

> out

> > why. but it's irrelevant now`

>

> It's not totally irrelevant. (Ok, it's not relevant

> at all to the topic of the thread)

>

> Line lengths of 80 characters reduces scrolling and

> makes it possible to print on paper (but who cares

> about that?)

In my shop you get dirty looks if the code is not readable because it wraps (unix) or needs scrolling (Win).

abillconsla at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 37

> > > nonsense, these days. that's a throwback to when

> > > everyone was compiling on terminals, where 80

> > chars

> > > was the width of the terminal screen. we had

> that

> > > mandated in our coding standards where I used to

> > > work. first time I did a compile-onsite, I found

> > out

> > > why. but it's irrelevant now`

> >

> > It's not totally irrelevant. (Ok, it's not

> relevant

> > at all to the topic of the thread)

> >

> > Line lengths of 80 characters reduces scrolling

> and

> > makes it possible to print on paper (but who cares

> > about that?)

>

>

> In my shop you get dirty looks if the code is not

> readable because it wraps (unix) or needs scrolling

> (Win).

I'm fortunate enough to work in a shop that has moved beyond the 1980s. Our standard line width is 120, and there are certain cases where we're allowed to ignore that.

jverda at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 38

> > >

> > A few

> > classes will be long and many will be short and

> the

> > rest will be in between.

>

> So on average maybe 157 lines?

Get all the .jar files you can and add their lengths; then divide by the number of jar files - that's your average length. Now google for a length_stabilizer program that will grow or shrink your current .jar file to that average length. the shrinking is done using the new Xlintle pos-crash encode packing unicode algorithm originally developed by Naza for the Cobol enterprise space satalite super-subterfuge survalence rocketry network back in the 1970s.

#Bill

abillconsla at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 39
right. we've tackled ideal length, had a crack at ideal width, can we now take the logical step and discuss the ideal depth? then on to duration :-)
georgemca at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 40

> Get all the .jar files you can and add their lengths;

> then divide by the number of jar files - that's your

> average length. Now google for a length_stabilizer

> program that will grow or shrink your current .jar

> file to that average length. the shrinking is done

> using the new Xlintle pos-crash encode packing

> unicode algorithm originally developed by Naza for

> the Cobol enterprise space satalite super-subterfuge

> survalence rocketry network back in the 1970s.

I found an example of this pos-crash encode length_stabilizer last week, but found that the stabilization algorithm fails to counteract ill effects from the Heisenberg principle. I believe the accepted method for isolating this problem is to jump up the API ladder by two levels and do your own unicode packing.

kevjavaa at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 41
> > Yes! a full 314 degrees.> > thsi also perfect tempreture to cook turkey. rember thsi advices.Majinda, old fruit, I thought you only ate donkey meat!?
DrLaszloJamfa at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 42
> cant be too careflu.Which is like bird flu, only worse.~
yawmarka at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 43

> > > > Yes! a full 314 degrees.

> > >

> > > thsi also perfect tempreture to cook turkey.

> > rember

> > > thsi advices.

> >

> > Yesterday was an invigorating 7 F (-13 C) with a

> > wind chill of -15 F (-26 C).

> >

> > Today is just as refreshing.

>

> Lucky bstard.

Yeah, except the schools were closed yesterday (used a snow day) becuase they did not want the kids standing at the bus stops when it was (about -15 F). A lot of parents had to spend a sick day to stay at home with the kids (me included.)

When I was a kid, we'd pour rubbing alcohol on our bodies and walk to to school nekkid when it was that cold. But you tell the young people that, and they don't believe you.

filestreama at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 44

> > > > > Yes! a full 314 degrees.

> > > >

> > > > thsi also perfect tempreture to cook turkey.

> > > rember

> > > > thsi advices.

> > >

> > > Yesterday was an invigorating 7 F (-13 C) with

> a

> > > wind chill of -15 F (-26 C).

> > >

> > > Today is just as refreshing.

> >

> > Lucky bstard.

>

> Yeah, except the schools were closed yesterday (used

> a snow day) becuase they did not want the kids

> standing at the bus stops when it was (about -15 F).

> A lot of parents had to spend a sick day to stay at

> home with the kids (me included.)

>

> When I was a kid, we'd pour rubbing alcohol on our

> bodies and walk to to school nekkid when it was that

> cold. But you tell the young people that, and they

> don't believe you.

We had to walk uphill for 10 miles at 5 AM - which meant getting up at 3AM to cut the wood and split it, bring it in, make a fire, so that mom could bake bread and cook breakfast - carry 50 punds of books on our backs through 3 feet of snow, then when we got to school we had to cut more wood and make another fire just to keep from freezing while we was taught.

abillconsla at 2007-7-21 17:04:43 > top of Java-index,Java Essentials,New To Java...
# 45

> When I was a kid, we'd pour rubbing alcohol on our

> bodies and walk to to school nekkid when it was that

> cold. But you tell the young people that, and they

> don't believe you.

Cool.Thats a **** cool body booze.The getting hotter and hotter here.Can't think of a day with the clothes on!

qUesT_foR_knOwLeDgea at 2007-7-21 17:04:47 > top of Java-index,Java Essentials,New To Java...
# 46

> > > > > > Yes! a full 314 degrees.

> > > > >

> > > > > thsi also perfect tempreture to cook turkey.

> > > > rember

> > > > > thsi advices.

> > > >

> > > > Yesterday was an invigorating 7 F (-13 C)

> with

> > a

> > > > wind chill of -15 F (-26 C).

> > > >

> > > > Today is just as refreshing.

> > >

> > > Lucky bstard.

> >

> > Yeah, except the schools were closed yesterday

> (used

> > a snow day) becuase they did not want the kids

> > standing at the bus stops when it was (about -15

> F).

> > A lot of parents had to spend a sick day to stay

> at

> > home with the kids (me included.)

> >

> > When I was a kid, we'd pour rubbing alcohol on our

> > bodies and walk to to school nekkid when it was

> that

> > cold. But you tell the young people that, and

> they

> > don't believe you.

>

>

> We had to walk uphill for 10 miles at 5 AM

Luxury. We had to walk to school at 2:00AM. Uphill. Both ways.

filestreama at 2007-7-21 17:04:47 > top of Java-index,Java Essentials,New To Java...
# 47
>Can't think of a day with the clothes> on!You wouldn't happen to live in the San Fernando valley, would you?Nevermind.
filestreama at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 48
>> We had to walk uphill for 10 miles at 5 AM>Luxury. We had to walk to school at 2:00AM. Uphill. Both ways.Did I forget to mention the asteroid showers?
abillconsla at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 49

> When I was a kid, we'd pour rubbing alcohol on our bodies and walk

> to to school nekkid when it was that cold. But you tell the young

> people that, and they don't believe you.

When I was a youngster we didn't have any rubbing alcohol and no

clothes either. We'd set each other on fire to get some warmth, but

we didn't complain, we were happy in those days.

kind regards,

Jos (< no matches either ;-)

JosAHa at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 50

> > When I was a kid, we'd pour rubbing alcohol on our

> bodies and walk

> > to to school nekkid when it was that cold. But you

> tell the young

> > people that, and they don't believe you.

>

> When I was a youngster we didn't have any rubbing

> alcohol and no

> clothes either. We'd set each other on fire to get

> some warmth, but

> we didn't complain, we were happy in those days.

>

> kind regards,

>

> Jos (< no matches either ;-)

When I say rubbing alcohol, I mean battery acid.

filestreama at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 51

> > > When I was a kid, we'd pour rubbing alcohol on

> our

> > bodies and walk

> > > to to school nekkid when it was that cold. But

> you

> > tell the young

> > > people that, and they don't believe you.

> >

> > When I was a youngster we didn't have any rubbing

> > alcohol and no

> > clothes either. We'd set each other on fire to get

> > some warmth, but

> > we didn't complain, we were happy in those days.

> >

> > kind regards,

> >

> > Jos (< no matches either ;-)

>

> When I say rubbing alcohol, I mean battery acid.

That was you?!

abillconsla at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 52
> When I say rubbing alcohol, I mean battery acid.> > > That was you?!Yeah. Sorry Bill but remember your '68 AMC Javelin? I'm the one that swiped your battery.
filestreama at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 53

> > When I say rubbing alcohol, I mean battery acid.

> >

> >

> > That was you?!

>

> Yeah. Sorry Bill but remember your '68 AMC Javelin?

> I'm the one that swiped your battery.

That was my brothers car ... first time I was able to win a race with him; so thanks! ... even so it was close, what with my '64 Falcon running on Grolsch.

#Bill

abillconsla at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 54
The Alabama Highway Patrol used the AMC Javelin in '71 and '72. 401 cu. in. engine.
filestreama at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 55
So you like them 'ol AMCs, huh ... nice cars!
abillconsla at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 56

> A very general question?

>

> What is the ideal length (no of lines) of a java

> file? I know there are no hard core rules.

>

> I Just trying to improve my coding style and

> techniques.

>

> thks.

On a bit more serious note ... check this url: [url http://www.google.com/search?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=dbp&q=java+jar+file+sizing&btnG=Search]Java jar file sizing[/url] out, why not?

abillconsla at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 57

> When I say rubbing alcohol, I mean battery acid.

You were lucky then, we used to puke over each other during our 29000

kilometres run to primary school. That is to say, if there were anything

at all to puke because all we got for dinner was a bit of cold, black gravel

once a week. But we were lucky then ...

kind regards,

Jos (< sigh, nostalgia kicks in ... ;-)

JosAHa at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 58

> kind regards,

>

> Jos (< no matches either ;-)

I would like to take this opportunity to remind you that if you keep signing your posts you'll have to use that installation utility I suggested.

People feeble-minded enought to sign everything regardless of whether it's necessary or not just cannot be trusted.

JosAHa at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 59

> > kind regards,

> >

> > Jos (< no matches either ;-)

>

> I would like to take this opportunity to remind you

> that if you keep signing your posts you'll have to

> use that installation utility I suggested.

>

> People feeble-minded enought to sign everything

> regardless of whether it's necessary or not just

> cannot be trusted.

*happy smile*

love, hugs and kisses Ulrika.

kindest regards,

Jos

JosAHa at 2007-7-21 17:04:48 > top of Java-index,Java Essentials,New To Java...
# 60
> I'm aluding to the global object... ever maintained> java written by a c++ programmer?having been a C++ programmer before becoming a Java programmer I certainly have ;)
jwentinga at 2007-7-21 17:04:52 > top of Java-index,Java Essentials,New To Java...
# 61

> > When I was a kid, we'd pour rubbing alcohol on our

> bodies and walk

> > to to school nekkid when it was that cold. But you

> tell the young

> > people that, and they don't believe you.

>

> When I was a youngster we didn't have any rubbing

> alcohol and no

> clothes either. We'd set each other on fire to get

> some warmth, but

> we didn't complain, we were happy in those days.

>

You had fire when you were young?

jwentinga at 2007-7-21 17:04:52 > top of Java-index,Java Essentials,New To Java...
# 62

> > I'm aluding to the global object... ever maintained

> > java written by a c++ programmer?

>

> having been a C++ programmer before becoming a Java

> programmer I certainly have ;)

It's an interesting topic.

Should you learn Java before C++ or the other way around?

Although Java is rooted in C++, is Java such a different language that there's no comparision with C++ anymore?

jwentinga at 2007-7-21 17:04:52 > top of Java-index,Java Essentials,New To Java...
# 63

> > > When I was a kid, we'd pour rubbing alcohol on

> our

> > bodies and walk

> > > to to school nekkid when it was that cold. But

> you

> > tell the young

> > > people that, and they don't believe you.

> >

> > When I was a youngster we didn't have any rubbing

> > alcohol and no

> > clothes either. We'd set each other on fire to get

> > some warmth, but

> > we didn't complain, we were happy in those days.

> >

> You had fire when you were young?

Nah, I am sooooo sure not ... probably had to go up the volcano every coupla days to get the logs burning and then rolled them back down the hill (had to carry them up on their backs, no doubt!) while they were still burning. If they went out by the time they reached the bottom they probably just used their feet to light up the fire since I can't imagine that they had shoes.

Well anyways that's about what we did.

abillconsla at 2007-7-21 17:04:52 > top of Java-index,Java Essentials,New To Java...
# 64
> You had fire when you were young?No, we'd all take turns shouting "woosh! woosh!" pretending we'd hada fire and then we all died; but we didn't complain though; we were lucky,kind regards,Jos ;-)
JosAHa at 2007-7-21 17:04:52 > top of Java-index,Java Essentials,New To Java...
# 65
> People feeble-minded enought to sign everything> regardless of whether it's necessary or not just> cannot be trusted.Good to knowKaj
kajbja at 2007-7-21 17:04:52 > top of Java-index,Java Essentials,New To Java...