Tổng hợp tài liệu, ebook Kỹ Thuật Lập Trình tham khảo.
Các phương thức của giao diện này: getLevel() Lấy âm lượng ở mức hiện tại, giá trị trả về là kiểu int. getMuted() Lấy trạng thái mute của tín hiêu liên quan đến VolumeControl này, giá trị trả về là kiểu boolean. setLevel(int level) Đặt âm lượng sử dụng các giá trị từ 0 đến100; setMute(boolean mute)Thiết lâp trạng thái mute hoặc unmute.
17 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 638 | Lượt tải: 0
TiledLayer(int columns, int rows, Image image, int tileWidth, int tileHeight); Có số hàng, cột và ảnh cần chia. Độ rộng và cao của tile setCell(int col, int row, int tileIndex);//đặt tile vào bức ảnh ở vị trí col,row và lấy ảnh có tileIndex (ở trên là từ 1,2, 6) getCell(int col, int row);//trả về index của cell, nếu cell là empty trả về 0 ...
34 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 644 | Lượt tải: 0
Một Alert đơn giản là một hộp thoại rất nhỏ. Có 2 loại Alert: • Modal: hộp thoại thông báo được trình bày đến khi người dùng ấn nút đồng ý • Non-modal: hộp thoại thông báo chỉ được trình bày trong một số giây nhất địnhCác phương thức dựng của Alert:Alert(String title)Alert(String title, String alertText, Image alertImage, AlertType alertType)...
26 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 799 | Lượt tải: 0
It is important to note that a generic class is
shared by all its instances regardless of its
actual generic type.
GenericStack
16 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 692 | Lượt tải: 0
1. It begins with an equilateral triangle, which is considered to be the Sierpinski fractal of order (or level) 0, as shown in Figure 19.7(a). 2. Connect the midpoints of the sides of the triangle of order 0 to create a Sierpinski triangle of order 1, as shown in Figure 19.7(b). 3. Leave the center triangle intact. Connect the midpoints of th...
43 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 637 | Lượt tải: 0
RandomAccessFile Methods, cont. long length()IOException Returns the length of the file. final void writeChar(int v) throws IOException Writes a character to the file as a two-byte Unicode, with the high byte written first. final void writeChars(String s) throws IOException Writes a string to the file as a sequence of characters
37 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 671 | Lượt tải: 0
Creating Custom Exception Classes Use the exception classes in the API whenever possible. Create custom exception classes if the predefined classes are not sufficient. Declare custom exception classes by extending Exception or a subclass of Exception
39 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 662 | Lượt tải: 0
The manifest file must have an entry to contain the main class. For example, to run TicTacToe, you need to insert the following two lines in the manifest file: Main-Class: TicTacToe Sealed: true Run the .jar file using the java command from the directory that contains TicTacToe.jar, java -jar TicTacToe.jar TIP: You can write an installation...
42 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 638 | Lượt tải: 0
Example: Creating Multiple Windows This example creates a main window with a text area in the scroll pane, and a button named "Show Histogram." When the user clicks the button, a new window appears that displays a histogram to show the occurrence of the letters in the text area.
54 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 621 | Lượt tải: 0
In Chapter 12, you drew a StillClock to show the current time. The clock does not tick after it is displayed. What can you do to make the clock display a new current time every second? The key to making the clock tick is to repaint it every second with a new current time. You can use a timer to control how to repaint the clock.
37 trang | Chia sẻ: dntpro1256 | Ngày: 23/11/2020 | Lượt xem: 652 | Lượt tải: 0