I have always had problems reading documentation for example
I was just researching about file paths for java and I so this :
”
Usage Example:
Path file = ...
BasicFileAttributes attrs = Files.readAttributes(file, BasicFileAttributes.class);
”
//http://docs.oracle.com/javase/7/docs/api/java/nio/file/attribute/BasicFileAttributes.html
What is ….. ??? 😐
I know im not a expert but example code that is full coded would be nice, Or Is is it becouse im not at that
level yet…
I tried testing it..did not even run 🙁
Please Help
API documentation is meant to give you details about a particular class and serve as a reference to come back to. It’s purpose is not to provide you with an explanation how concepts fit together. So
...stands as a placeholder for any code that might make sense in a particular use case. For a general overview Oracle hosts an excellent set of tutorials.And if you want to see even a bigger picture, I can recommend an excellent book Thinking in Java.