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

Strikingwolf

New Member
Jul 29, 2019
3,709
-26
1
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
 

SoraZodia

Forum Ghost
Third Party Pack Team
Mod Developer
Mar 11, 2014
3,924
1,289
253
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.
 

Someone Else 37

Forum Addict
Feb 10, 2013
1,876
1,440
168
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.
 

dylanpiera

New Member
Jul 29, 2019
161
0
0
Alright. Would you be willing to learn some basic Clojure on Saturday? Stuff like syntax, basic control flow and the ilk
I'd like to, Whice timezone your in?


About the weather topic:
No-one has to ask me again weather is same here every day..
Cloudy, Loads of wind, Cold +-5 deg, and rain
Perfect weather in holland!
 

SpwnX

New Member
Jul 29, 2019
210
0
0
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...
 

dylanpiera

New Member
Jul 29, 2019
161
0
0
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 :(
 

SpwnX

New Member
Jul 29, 2019
210
0
0
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...
 

dylanpiera

New Member
Jul 29, 2019
161
0
0
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