java8-04 - 기타 기능
1 기본 Base64 API
Base64에 대응하는 조작은 굳이 제3자 라이브러리를 사용할 필요가 없다.java8에 내장된 Base64 API 위치:
java.util.Base64
// -->
byte[] bs = Base64.getEncoder().encode("java 8".getBytes(Charset.forName("UTF-8")));
// amF2YSA4
System.out.println(new String(bs));
// --> String
String string = Base64.getEncoder().encodeToString("java 8".getBytes(Charset.forName("UTF-8")));
// amF2YSA4
System.out.println(string);
//
byte[] bs2 = Base64.getDecoder().decode(bs);
// java 8
System.out.println(new String(bs2));
2 NPE용 Optional 컨테이너
빈 포인터를 위해 태어난 옵티올은 N이 이전
google Guava
에 등장한 것으로 보인다.public final class Optional {
private final T value;
private Optional(T value) {
// value null , , NPE
this.value = Objects.requireNonNull(value);
}
private Optional() {
this.value = null;
}
// Optional
public static Optional empty() {
@SuppressWarnings("unchecked")
Optional t = (Optional) EMPTY;
return t;
}
public static Optional of(T value) {
return new Optional<>(value);
}
public static Optional ofNullable(T value) {
return value == null ? empty() : of(value);
}
// ...
}
사실은 용기류로 빈 대상을 용기에 포장할 수 있다.
Optional 인스턴스 가져오기
구조기는 개인적이며 다음과 같은 방법으로 그 실례를 얻을 수 있다.
// 1. Optional
Optional
상용 방법
public Optional map(Function super T, ? extends U> mapper) {
// mapper null
Objects.requireNonNull(mapper);
// , Optional
if (!isPresent())
return empty();
else {
// , apply Optional
return Optional.ofNullable(mapper.apply(value));
}
}
Optional 사용
먼저 어색한 작법 을 보아라
Optional user = ......;
if (user.isPresent()) {//
return user.get().getName();
} else {//
return "default Value";
}
사실 이렇게 쓰는 것은 아래의 쓰는 방법과 아무런 차이가 없다.
User user = ......;
if (user != null) {
return user.getName();
} else {
return "default Value";
}
호출 방법
isPresent()
은 사실obj!=null
과 똑같다.Optional 이 있으면 다음과 같이 우아합니다.
Optional user = ......;
return user.map(User::getName).orElse("default Value");
다시 한 번 예를 보겠습니다.
public static class Person {
private String name;
private Addr addr;
public static class Addr {
private String city;
private String street;
}
}
// , , "NotFound"
public String getPersonStreet(Person person) {
return Optional.ofNullable(person)//
.map(p -> p.getAddr())//
.map(a -> a.getStreet())//
.orElse("NotFound");
}
// Optional ,
public String getPersonStreet2(Person person) {
if (person != null) {
if (person.getAddr() != null) {
if (person.getAddr().getStreet() == null) {
return "NotFound";
}
return person.getAddr().getStreet();
}
}
return "NotFound";
}
총결산
isPresent()/get()
방법map()/filter()/orElse()
등 방법public interface Foo {
//
Integer max = 10000;
//
String get();
// ( )
static String bar() {
return "haha";
}
// default ( )
default String hello() {
return "hello";
}
}
이렇게 되면 다승계와 비슷하지만 충돌이 있을 수 있다.
public class InterfaceTest {
static interface Walkable {
default void walk() {
System.out.println("walk() from Walkable");
}
}
static interface Speekable {
default void speek() {
System.out.println("walk() from Walkable");
}
default void walk() {
System.out.println("walk() from Walkable");
}
}
static class Dog implements Walkable, Speekable {
@Override
public void walk() {
// 1. default ,
Speekable.super.walk();
}
}
static class Animal {
public void walk() {
System.out.println("walk() from Animal");
}
}
static class Cat extends Animal implements Walkable {
}
public static void main(String[] args) {
Cat cat = new Cat();
// 2. , walk() Animal, Walkable
cat.walk(); // walk() from Animal
}
}
4 반복 가능한 메모
jdk1.8 이전에 자바의 주석은 같은 수식된 방법이나 속성에 직접 중복될 수 없다.수조나 다른 방식을 통해서만 이 수요를 실현할 수 있다.
jdk1.8에서 주석을 같은 수식된 방법이나 속성에 중복적으로 나타낼 수 있다.
public class AnnotationTest {
@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Repeatable(Roles.class)
public static @interface Role {
String value();
}
@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
public static @interface Roles {
Role[] value();
}
public static class RepeatableAnnotationTest {
@Role("admin")
@Role("user")
public void doProcess() {
}
}
public static void main(String[] args) throws Exception {
RepeatableAnnotationTest obj = new RepeatableAnnotationTest();
Method method = obj.getClass().getDeclaredMethod("doProcess");
Role[] annotations = method.getAnnotationsByType(Role.class);
// @cn.xxx$Role(value=admin)
// @cn.xxx$Role(value=user)
Arrays.stream(annotations).forEach(System.out::println);
}
}
5 JavaScript 엔진
public static void main(String[] args) throws ScriptException {
ScriptEngineManager manager = new ScriptEngineManager();
ScriptEngine engine = manager.getEngineByName("JavaScript");
Object ret = engine.eval("function add(i,j){return i+j;} add(1,1);");
//out: 2.0
System.out.println("out: " + ret);
}
6 JVM 메모리 모델 변경
영구 벨트가 제거되어 Metaspace가 도입되었습니다.
자세한 내용은 다음을 참조하십시오.http://blog.csdn.net/hylexus/article/details/53771460
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.