WEREWOLF UNRELATED THREAD

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
Deleted from my previous quote
Consturctors can call each other by using this.
Code:
class Foo {
private final int bar;
public Foo(int theBar) {
bar = theBar;
}
public Foo() {
this(1);
}
}
Is valid
That has numerous problems. One or two are said in the article
For iterators, if you don't want to implement hasNext(), you can throw a MethodNotSupportedException("Use next()") and do all of your stuff in the next() method.
That is just a clear oversight by the Java devs that you are side-stepping with this. Also, throwing exceptions for things that are standard is frowned upon by pretty much everyone
 
Deleted from my previous quote

That has numerous problems. One or two are said in the article
Completely missed the part about this... Can't argue against that one :/

That is just a clear oversight by the Java devs that you are side-stepping with this. Also, throwing exceptions for things that are standard is frowned upon by pretty much everyone
Good point.
 
Not totally sure how you want me to interpret that... The main reason I've been going on about Haskell is that I have learned a fair amount of it, while I haven't messed with Clojure yet. I probably will at some point (mostly because you), and I have dabbled in Scheme, so I know some of the ups and downs of working with LISP.
 
Wish it were like that here. Never experienced temperatures below 5C (this was a very rare case in a single day of a year, some years ago) in my city.

I enjoyed that cold night...
 
Wish it were like that here. Never experienced temperatures below 5C (this was a very rare case in a single day of a year, some years ago) in my city.

I enjoyed that cold night...
I like the cold more then the warmth
But im next to the sea :\
So im just cold en wet. Never have snow while the rest of the country has :(
 
So do I.

I enjoyed 40 days of winter on japan. All my good feelings for the cold were justified even more there.
It was a seaside town so i know that it should be harsh there on the summer, but if i could live on a chilly place far from the coast it would be lovely...
 
So do I.

I enjoyed 40 days of winter on japan. All my good feelings for the cold were justified even more there.
It was a seaside town so i know that it should be harsh there on the summer, but if i could live on a chilly place far from the coast it would be lovely...
same here...
 
  • Like
Reactions: xTordX