📄 practical quiz 8.dvd.java
字号:
/**
* This interface declares the methods for obtaining DVD information.
*
* @author Neil
* @version 1.0.0
*/
public interface DVD {
/**
* Returns the region code of the DVD.
*
* @return Returns the region code of the DVD.
*/
int getRegionCode();
/**
* Returns an array with the names of the audio tracks on the DVD.
*
* @return Returns an array with the names of the audio tracks on the DVD.
*/
String[] getAudioTracks();
/**
* Returns an array with the languages of the subtitles on the DVD.
*
* @return Returns an array with the languages of the subtitles on the DVD.
*/
String[] getSubtitles();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -