practical quiz 8.dvd.java

来自「CMU SSD3 课程完整答案(除EXAM)」· Java 代码 · 共 30 行

JAVA
30
字号
/**
 * 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 + =
减小字号Ctrl + -
显示快捷键?