SlideShare uma empresa Scribd logo
1 de 9
Item 19.
타입을 정의할 때만 인터페이스를 사용하
자.
Chapter 4. 클래스와 인터페이스
Interface?
• 클래스가 구현하는 인터페이스는 클라이언트가 그 클래
스의 인터페이스로 할 수 있는 일을 나타낸다.
Constant interface?
• 메소드를 갖지 않고, 외부에 제공하는 상수 값을 갖는
static final 필드만으로 구성된다.
• Constant interface를 구현하는 클래스에서 상수 필드 앞
에 별도의 클래스 이름을 붙이지 않고 사용하기 위해 구현
한다.
Constant interface?
// Constant interface
public interface PhysicalConstants {
// 아보가드로 수
static final double AVOGADROS_NUMBER = 6.012414e23;
// 볼쯔만 상수
static final double BOLTZMANN_CONSTANT = 1.14214e-14;
// 전자 질량
static final double ELECTRON_MASS = 9.1514e-31;
}
Constant interface?
• 상세 구현이(상수가) 클래스 외부로 노출됨
• 상수가 필요 없어지더라도 binary 호환성을 유지하기 위
해 그 상수 interface를 유지
• subclass에서 상수 이름과 같은 이름의 변수 이용 못함
상수를 외부로 제공하는 방법
• 상수가 기존클래스나 인터페이스와 밀접하게 관계 된다
면
– 해당 클래스나 인터페이스에 추가
ex) Integer나 Double의 MIN_VALUE, MAX_VALUE
• 열거타입의 멤버가 되는 것이 좋은 지 고려(enum)
• 유틸리티 클래스에 상수를 둠
상수를 외부로 제공하는 방법
• 유틸리티 클래스에 상수를 둠
public class PhysicalcontantsUClass {
private PhysicalcontantsUClass() {
} // 인스턴트 생성 방지
static final double AVOGADROS_NUMBER = 6.012414e23;
static final double BOLTZMANN_CONSTANT = 1.14214e-14;
static final double ELECTRON_MASS = 9.1514e-31;
}
public class Test {
public static void main(String[] arg){
double boltzmann =
PhysicalcontantsUClass.BOLTZMANN_CONSTANT;
double avogadros =
PhysicalcontantsUClass.AVOGADROS_NUMBER;
double electron = PhysicalcontantsUClass.ELECTRON_MASS;
}
}
상수를 외부로 제공하는 방법
• 유틸리티 클래스에 상수를 둠
public class PhysicalcontantsUClass {
private PhysicalcontantsUClass() {
} // 인스턴트 생성 방지
static final double AVOGADROS_NUMBER = 6.012414e23;
static final double BOLTZMANN_CONSTANT = 1.14214e-14;
static final double ELECTRON_MASS = 9.1514e-31;
}
import static test.PhysicalcontantsUClass.*;
public class Test {
public static void main(String[] arg){
double boltzmann = BOLTZMANN_CONSTANT;
double avogadros = AVOGADROS_NUMBER;
double electron = ELECTRON_MASS;
}
}
요약
• 상수를 외부에 제공하기 위해 사용하면 안
됨.
• 즉, 인터페이스는 타입을 정의할 때만 사용.

Mais conteúdo relacionado

Destaque

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Destaque (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Item 19. 타입을 정의할 때만 인터페이스를 사용하자.

  • 1. Item 19. 타입을 정의할 때만 인터페이스를 사용하 자. Chapter 4. 클래스와 인터페이스
  • 2. Interface? • 클래스가 구현하는 인터페이스는 클라이언트가 그 클래 스의 인터페이스로 할 수 있는 일을 나타낸다.
  • 3. Constant interface? • 메소드를 갖지 않고, 외부에 제공하는 상수 값을 갖는 static final 필드만으로 구성된다. • Constant interface를 구현하는 클래스에서 상수 필드 앞 에 별도의 클래스 이름을 붙이지 않고 사용하기 위해 구현 한다.
  • 4. Constant interface? // Constant interface public interface PhysicalConstants { // 아보가드로 수 static final double AVOGADROS_NUMBER = 6.012414e23; // 볼쯔만 상수 static final double BOLTZMANN_CONSTANT = 1.14214e-14; // 전자 질량 static final double ELECTRON_MASS = 9.1514e-31; }
  • 5. Constant interface? • 상세 구현이(상수가) 클래스 외부로 노출됨 • 상수가 필요 없어지더라도 binary 호환성을 유지하기 위 해 그 상수 interface를 유지 • subclass에서 상수 이름과 같은 이름의 변수 이용 못함
  • 6. 상수를 외부로 제공하는 방법 • 상수가 기존클래스나 인터페이스와 밀접하게 관계 된다 면 – 해당 클래스나 인터페이스에 추가 ex) Integer나 Double의 MIN_VALUE, MAX_VALUE • 열거타입의 멤버가 되는 것이 좋은 지 고려(enum) • 유틸리티 클래스에 상수를 둠
  • 7. 상수를 외부로 제공하는 방법 • 유틸리티 클래스에 상수를 둠 public class PhysicalcontantsUClass { private PhysicalcontantsUClass() { } // 인스턴트 생성 방지 static final double AVOGADROS_NUMBER = 6.012414e23; static final double BOLTZMANN_CONSTANT = 1.14214e-14; static final double ELECTRON_MASS = 9.1514e-31; } public class Test { public static void main(String[] arg){ double boltzmann = PhysicalcontantsUClass.BOLTZMANN_CONSTANT; double avogadros = PhysicalcontantsUClass.AVOGADROS_NUMBER; double electron = PhysicalcontantsUClass.ELECTRON_MASS; } }
  • 8. 상수를 외부로 제공하는 방법 • 유틸리티 클래스에 상수를 둠 public class PhysicalcontantsUClass { private PhysicalcontantsUClass() { } // 인스턴트 생성 방지 static final double AVOGADROS_NUMBER = 6.012414e23; static final double BOLTZMANN_CONSTANT = 1.14214e-14; static final double ELECTRON_MASS = 9.1514e-31; } import static test.PhysicalcontantsUClass.*; public class Test { public static void main(String[] arg){ double boltzmann = BOLTZMANN_CONSTANT; double avogadros = AVOGADROS_NUMBER; double electron = ELECTRON_MASS; } }
  • 9. 요약 • 상수를 외부에 제공하기 위해 사용하면 안 됨. • 즉, 인터페이스는 타입을 정의할 때만 사용.