├── Book.java └── README.md /Book.java: -------------------------------------------------------------------------------- 1 | public class Book { 2 | 3 | private final String name; 4 | 5 | private final double price;public Star(String name, double price) { 6 | this.name = name; 7 | this.price = price; 8 | } 9 | 10 | 11 | @Override 12 | public int hashCode() { 13 | int hash = 7; 14 | hash = 23 * hash + Objects.hashCode(this.name); 15 | return hash; 16 | } 17 | @Override 18 | public boolean equals(Object obj) { 19 | if (obj == null) { 20 | return false; 21 | }if (getClass() != obj.getClass()) { 22 | return false; 23 | }final Test other = (Test) obj;if (!Objects.equals(this.name, other.name)) { 24 | return false; 25 | }if (Double.doubleToLongBits(this.price) != Double.doubleToLongBits(other.price)) { 26 | return false; 27 | } 28 | return true; 29 | } 30 | 31 | @Override 32 | public String toString() { 33 | return "Test{" + "name=" + name + ", price=" + price + '}'; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # javarevisited.github.io 2 | A github page for my blog Javarevisited and Java67 and Medium channel, here you will find the best articles, tutorials, courses, to learn latest technology 3 | 4 | ## 1.Java 5 | 6 | [10 Courses to learn Java in 2020](https://medium.com/javarevisited/top-5-java-online-courses-for-beginners-best-of-lot-1e1e240a758) 7 | 8 | [21 Books Java developer should Read ](https://medium.com/javarevisited/10-books-java-developers-should-read-in-2020-e6222f25cc72) 9 | 10 | [10 Scala and Groovy Frameworks Java developer can learn](https://javarevisited.blogspot.com/2020/09/top-10-scala-and-groovy-frameworks-java.html) 11 | 12 | [Top 5 Websites to learn Java Coding for FREE](https://javarevisited.blogspot.com/2018/07/top-5-websites-to-learn-coding-in-java.html) 13 | 14 | 15 | ## 2. Python 16 | [Top 10 Courses to Learn Python in 2020](https://medium.com/better-programming/top-5-courses-to-learn-python-in-2018-best-of-lot-26644a99e7ec) 17 | 18 | [15 Free Courses to Learn Python in 2020](https://medium.com/swlh/5-free-python-courses-for-beginners-to-learn-online-e1ca90687caf) 19 | 20 | [Top 10 Python Programming Books for Beginners and Experienced Programmers](https://medium.com/javarevisited/my-favorite-books-to-learn-python-in-depth-77465633b46e) 21 | 22 | [Top 5 Python Books for Data Science and Machine Learning](https://javarevisited.blogspot.com/2019/08/top-5-python-books-for-data-science-and-machine-learning.html) 23 | 24 | 25 | ## 3. JavaScript 26 | 27 | [15 Best JavaScript online courses](https://medium.com/javarevisited/10-best-online-courses-to-learn-javascript-in-2020-af5ed0801645) 28 | 29 | [13 Free JavaScript courses](https://medium.com/javarevisited/my-favorite-free-tutorials-and-courses-to-learn-javascript-8f4d0a71faf2) 30 | 31 | [Best JavaScript Tutorials for Beginners](https://medium.com/javarevisited/12-free-courses-to-learn-javascript-and-es6-for-beginners-and-experienced-developers-aa35874c9a32) 32 | 33 | [Best TypeScript courses for Beginners](https://medium.com/@javinpaul/7-best-courses-to-learn-typescript-in-depth-58439e1ce729) 34 | 35 | 36 | ## 4. Programming 37 | 38 | [20+ website to learn programming for FREE](https://medium.com/javarevisited/top-20-sites-to-learn-coding-in-2020-f57ff63d9cb3) 39 | 40 | 41 | ## 5. DevOps 42 | [The Comprehsnive DevOps RoadMap](https://medium.com/hackernoon/the-2018-devops-roadmap-31588d8670cb) 43 | 44 | [5 Courses to become DevOps Engineer](https://medium.com/javarevisited/top-5-online-courses-to-become-a-devops-engineer-in-2020-764f5e60c2b) 45 | 46 | ## 6. Spring and Spring Boot 47 | 48 | [Top 20 Spring Boot Interview Questions](https://javarevisited.blogspot.com/2020/05/top-20-spring-boot-interview-questions-answers.html) 49 | 50 | [How to crack Spring certification](https://javarevisited.blogspot.com/2018/08/how-to-crack-spring-core-professional-certification-exam-java-latest.html#axzz5j90KOik7) 51 | 52 | [5 Free Spring MVC, Spring Core, and Spring Boot courses](https://www.java67.com/2017/11/top-5-free-core-spring-mvc-courses-learn-online.html) 53 | 54 | 55 | 56 | ## 7. Spring and Spring Boot 57 | 58 | [Top 20 Spring Boot Interview Questions](https://javarevisited.blogspot.com/2020/05/top-20-spring-boot-interview-questions-answers.html) 59 | 60 | [How to crack Spring certification](https://javarevisited.blogspot.com/2018/08/how-to-crack-spring-core-professional-certification-exam-java-latest.html#axzz5j90KOik7) 61 | 62 | [5 Free Spring MVC, Spring Core, and Spring Boot courses](https://www.java67.com/2017/11/top-5-free-core-spring-mvc-courses-learn-online.html) 63 | 64 | [10 Free Spring Course for Beginners](https://medium.com/javarevisited/top-10-free-courses-to-learn-spring-framework-for-java-developers-639db9348d25) 65 | 66 | 67 | ## 8. Web Development 68 | 69 | [Best Web Development courses for Beginners](https://medium.com/better-programming/my-5-favorite-courses-to-learn-web-development-in-2019-a5e74167f8b2) 70 | 71 | [Best Full stack development courses for Beginners](https://medium.com/javarevisited/top-10-online-courses-to-become-a-fullstack-web-developer-in-2020-d608a6b63232) 72 | 73 | [Free courses to become full stack Java developer](https://medium.com/javarevisited/10-free-full-stack-java-development-courses-for-beginners-and-experienced-programmers-8473390bec03) 74 | 75 | [Best Python courses for Web development](https://medium.com/javarevisited/top-10-courses-to-learn-python-for-web-development-in-2020-best-of-lot-efe11fb6d212) 76 | 77 | 78 | --------------------------------------------------------------------------------