Java學習筆記

2021-07-30 23:18:00 字數 262 閱讀 5661

(1)this和super的區別:

this是指當前物件而super則是指父類的,當需要呼叫當前物件的方法時使用this呼叫,而需要呼叫父類的方法是就只能用super。

(2)super.paintcomponent(g)方法的功能:

當不呼叫此方法時,repaint()方法會將super.paintcomponent(g)中的內容繪製上去,屬於增量繪製,新的內容在原來的基礎上繼續繪製,如果呼叫此方法,那麼repaint()方法會繫那個整個元件清空然後再依次繪製。

java學習筆記

1 scanner的使用 1 在jdk5以後出現的用於鍵盤錄入資料的類。2 構造方法 a 講解了system.in這個東西。它其實是標準的輸入流,對應於鍵盤錄入 b 構造方法 inputstream is system.in scanner inputstream is c 常用的格式 scanne...

java學習筆記

方法傳參 如果某個方法的引數是基本資料型別,那麼傳參方式是賦值方式。如果引數是類,那麼就相當於c的位址傳值 public class hello public static void name helloi i class helloi 判斷時間先後 判斷傳入時間是否在當前時間之前 param ti...

Java學習筆記

1.由 基本資料型態轉換成 string string 類別中已經提供了將基本資料型態轉換成 string 的 static 方法 也就是 string.valueof 這個引數多載的方法 有下列幾種 string.valueof boolean b 將 boolean 變數 b 轉換成字串 str...