Path: csiph.com!aioe.org!.POSTED.xV/6gj+grSZn0+TB/DGTcw.user.gioia.aioe.org!not-for-mail From: Graeme Geldenhuys Newsgroups: comp.lang.java.programmer Subject: Re: basic learning path Date: Fri, 29 Mar 2019 18:02:50 +0000 Organization: Aioe.org NNTP Server Lines: 27 Message-ID: References: NNTP-Posting-Host: xV/6gj+grSZn0+TB/DGTcw.user.gioia.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 X-Notice: Filtered by postfilter v. 0.9.2 Content-Language: en-GB Xref: csiph.com comp.lang.java.programmer:38832 On 14/03/2019 20:21, Eric Sosman wrote: > If you're just beginning to learn Java itself, I suggest that > you avoid IDE's and concentrate entirely on Java. As I mentioned in the other group, the above is very good advice. I recently found this little tool call JPad (similar to JavaScript's jsFiddle). You can type in code snippets and hit F5 to run it. No need to type in the boilerplate code like defining the class, defining the main() method etc. It also as built in functions to display data very easily. eg: Dump(myHasSet) gives you a very nice table-like output. A brilliant tool to collect code snippets or easily test a Java language concept. http://jpad.io/ NOTE: It was implemented using JavaFX, so you would need that to run it. Oracle's Java 8 I believe does include it as standard. Regards, Graeme