Page 1 of 1

About Question enthuware.ocpjp.v7.2.1591 :

Posted: Sat Jul 04, 2015 7:37 am
by romsky
It would be very handy to have web links to java docs for methods used in questions.

Re: About Question enthuware.ocpjp.v7.2.1591 :

Posted: Sat Jul 04, 2015 9:52 am
by admin
We do try to include links to articles that we think are good to read. Such links are useful because the user doesn't have to sift through multiple articles to find a good one.

JavaDoc links, on the other hand, are extremely easy to find. For example, if you just type getDateInstance in your browser, the first link on google is the JavaDoc API page. So there isn't much value addition in hard coding a link to that page.
HTH,
Paul.

Re: About Question enthuware.ocpjp.v7.2.1591 :

Posted: Tue Sep 27, 2022 11:35 am
by sohamdatey22
Such, a counter intuitive thing done by java here,

valid to pass locale

Code: Select all

NumberFormat.getInstance(Locale);//valid
invalid to pass locale

Code: Select all

DateFormat.getInstance(locale);//invalid