Java Coding standards [closed] - java

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
What coding standards in java should a programmer definitely
follow for a more readable code?

Read the Code Conventions for the Java programming language by Oracle

Roger C. Martin: Clean code - a handbook of agile software development

Start with Checkstyle and PMD.

There are a lot of factors which go into defining the term "a good coding standard" but the official document should offer you some insight.

Related

What is the best way to learn differet code? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am trying to a get a general grasp of a wide variety of different languages. Where is a good place to start learning? I would like to learn php, java, html, css, javascript.
I have been to w3schools http://www.w3schools.com
Are there any other great websites?
Some of the sites where you can learn java are :
mkyong itself and links provided on this site.
I would definitely try Codecademy http://www.codecademy.com. its free and they have great examples that you can work through.
Read books! There's a lot of computer related book at Indigo. I think they are good, because it comes with example and it explains well

which QT C++ or Java is good For Learning? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
QT C++ programming is best for learning or java SE is best?
Which one?
Please help me
It comes down to your needs. What is most suitable for you. Both are great and fun to learn. I myself learned C++ first and then went to Java. I really enjoy working in both but I enjoy GUI work more in Java.
Again it comes to your skills and needs. If you are good with C++ and plan to stick with it in future than sure go with Qt C++ otherwise every language is good to learn as every thing has its Pro's and Con's..

Recommend me a good JNI book [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm creating a software project in Java, is a remote administration tool. The thing is that I need to add some features with C++ and I read some about this process and I realized I need JNI, could you recommend me a good JNI Book or something related with ?
Have you read this?
Java Native Interface: Programmer's Guide and Specification
This book is quite good I think.

Good documentation/book about Future [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Can anyone suggest a good documentation/tutorial/book about the Future interface in Java?
The bible is Java Concurrency in Practice.
The javadoc itself of the concurrent package is pretty darn good. I think it's one of the most beautifully javadoced code in JDK.
Concurrent Programming in Java(TM): Design Principles and Patterns (2nd Edition) by Doug Lea. This is the book by the author of java.util.concurrent package. Java Concurrency in Practice is a very good book, too.

What's JavaCC's ADVANTAGE versus ANTLR [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Too many people have told me about the disadvantages, but what is its advantage if any?
JavaCC doesn't require its own runtime JAR (the code it generates runs on its own), whereas ANTLR does.
JavaCC is incredibly easy to learn if you already know Java. The syntax is quite similar to standard Java syntax, and the differences are intuitive.
JavaCC can generate C++ as of last year and Sreeni (the maintainer) is improving the system.
http://java.net/projects/javacc/lists/users/archive/2011-02/message/10

Categories

Resources