https://github.com/sjsdfg/onjava8-examples-maven
this is the maven version of OnJava8-Examples https://github.com/BruceEckel/OnJava8-Examples
https://github.com/sjsdfg/onjava8-examples-maven
on-java-8 onjava8
Last synced: 3 months ago
JSON representation
this is the maven version of OnJava8-Examples https://github.com/BruceEckel/OnJava8-Examples
- Host: GitHub
- URL: https://github.com/sjsdfg/onjava8-examples-maven
- Owner: sjsdfg
- Created: 2019-04-26T02:10:23.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-22T04:08:04.000Z (almost 2 years ago)
- Last Synced: 2025-03-18T09:37:44.993Z (3 months ago)
- Topics: on-java-8, onjava8
- Language: Java
- Size: 639 KB
- Stars: 80
- Watchers: 3
- Forks: 71
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OnJava8-Examples-Maven
this is the maven version of OnJava8-Examples https://github.com/BruceEckel/OnJava8-Examples
more easier to import
no guarantee that this code is run ok.
because some code just show you the wrong way, like this:
```java
// generics/HijackedInterface.java
// (c)2017 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
// {WillNotCompile}class Cat
extends ComparablePet implements Comparable {
// error: Comparable cannot be inherited with
// different arguments: and
// class Cat
// ^
// 1 errorpublic int compareTo(Cat arg) {
return 0;
}
}```