Web/JAVA (22) 썸네일형 리스트형 [Java] Interface Supplier<T> https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Supplier.html Supplier (Java SE 11 & JDK 11 ) docs.oracle.com Module java.base Package java.util.function Interface Supplier Type Parameters:T - the type of results supplied by this supplierAll Known Subinterfaces:ServiceLoader.ProviderAll Known Implementing Classes:GuardingDynamicLinkerExporterFunctional Interface:T.. [Java] this https://www.baeldung.com/java-this this 는 method가 호출되는 현재 객체에 대한 참조이다 이 this는 자주 쓰면서도 정확한 개념을 모르는 경우가 많다 Disambiguating Field Shadowing instance 변수와 로컬 매개변수를 구분할때 유용하다 인스턴스 필드와 이름이 같은 생성자 매개변수가 있을 때 매개변수와 구분하기 위해 this를 사용한다 public class KeywordTest { private String name; private int age; public KeywordTest(String name, int age) { this.name = name; this.age = age; } } Referencing Constructors of .. [IntelliJ Javadocs] Javadocs 문서 만들기 https://www.jetbrains.com/help/idea/working-with-code-documentation.html Javadocs | IntelliJ IDEA www.jetbrains.com 틀린 내용이 있다면 알려주세요 💻 Javadoc는 Java 소스 코드에서 HTML 형식의 Java 코드 문서를 생성하는 도구이다 일반적으로 클래스, 메소드 또는 필드 위에 배치되는 Javadoc 주석으로 구성된다 https://www.oracle.com/technical-resources/articles/java/javadoc-tool.html How to Write Doc Comments for the Javadoc Tool Javadoc Home Page This document describes.. [Java] try-with-resources https://docs.oracle.com/javase/tutorial/essential/exceptions/tryResourceClose.html The try-with-resources Statement (The Java™ Tutorials > Essential Java Classes > Exceptions) The Java Tutorials have been written for JDK 8. Examples and practices described in this page don't take advantage of improvements introduced in later releases and might use technology no longer available. See Java Languag.. [JAVA 8↑] Stream https://java-8-tips.readthedocs.io/en/stable/streamsapi.html 6. Stream API — Java 8 tips 1.0 documentation Docs » 6. Stream API Edit on GitHub 6. Stream API In the previous chapter you saw how streams are related to collections, various stream sources and kind of stream operations. In this chapter we will have an extensive look at various operations supported java-8-tips.readthedocs.io https://d.. [JAVA 8↑] lambda expression https://docs.oracle.com/javase/tutorial/java/javaOO/lambdaexpressions.html Lambda Expressions (The Java™ Tutorials > Learning the Java Language > Classes and Objects) The Java Tutorials have been written for JDK 8. Examples and practices described in this page don't take advantage of improvements introduced in later releases and might use technology no longer available. See Java Language Changes.. 이전 1 2 3 다음