Probably it's a Java more than an Android programming question, anyway: there are two ways to declare the 3 standard view constructors: one is using this() to call the next most parametrized constructor, with null and 0, as I've seen here, and doing all the custom init in the last constructor.

The other way is calling super(), calling each time a function that does the init job.

Is one way more right than the other (why?), or it's just a style choice?

link|improve this question

This is really a duplicate of this question: stackoverflow.com/questions/4023344/this-vs-super-keywords You can find the answer there. – mbaird Dec 30 '10 at 17:00
possible duplicate of this vs super keywords – mbaird Dec 30 '10 at 17:01
I don't think it's very duplicative; this gets at the heart of: which path should your constructors take if there are multiple constructors in the superclass - and it's a very good question. +1. – Carl Manaster Dec 30 '10 at 17:04
@Carl: exactly - and thanks – bigstones Dec 30 '10 at 17:14
feedback

1 Answer

up vote 0 down vote accepted

OK, so I guess that there isn't any technical involvement one can think of, at least none so important that hi-rep people would know for sure. so... I deduce it's only a style choice.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.