A. 求java代碼的詳細執行過程順帶說一下eclipse中怎麼可以看到代碼的執行步驟呢謝謝
最基本的操作是:
1.首先在一個java文件中設斷點,然後debug as-->open debug Dialog,然後在對話框中選類後--> Run
當程序走到斷點處就會轉到debug視圖下。
2.F5鍵與F6鍵均為單步調試,F5是step into,也就是進入本行代碼中執行,F6是step over,
也就是執行本行代碼,跳到下一行,
3.F7是跳出函數
4.F8是執行到最後。
1.Step Into (also F5) 跳入
2.Step Over (also F6) 跳過
3.Step Return (also F7) 執行完當前method,然後return跳出此method
4.step Filter 逐步過濾 一直執行直到遇到未經過濾的位置或斷點(設置Filter:window-preferences-java-Debug-step Filtering)
5.resume 重新開始執行debug,一直運行直到遇到breakpoint
6.hit count 設置執行次數 適合程序中的for循環(設置 breakpoint view-右鍵hit count)
7.inspect 檢查 運算。執行一個表達式顯示執行值
8.watch 實時地監視變數的變化
9.我們常說的斷點(breakpoints)是指line breakpoints,除了line breakpoints,還有其他的斷點類型:field(watchpoint)breakpoint,method breakpoint,exception breakpoint.
10.field breakpoint 也叫watchpoint(監視點) 當成員變數被讀取或修改時暫掛
11.添加method breakpoint 進入/離開此方法時暫掛(Run-method breakpoint)
12.添加Exception breakpoint 捕抓到Execption時暫掛(待續...)
斷點屬性:
1.hit count 執行多少次數後暫掛 用於循環
2.enable condition 遇到符合你輸入條件(為ture\改變時)就暫掛
3.suspend thread 多線程時暫掛此線程
4.suspend VM 暫掛虛擬機
13.variables 視圖里的變數可以改變變數值,在variables 視圖選擇變數點擊右鍵--change value.一次來進行快速調試。
14.debug 過程中修改了某些code後--〉save&build-->resume-->重新暫掛於斷點
B. java中string類的方法有哪些
方法摘要
char charAt(int index)
返回指定索引處的 char 值。
int codePointAt(int index)
返回指定索引處的字元(Unicode 代碼點)。
int codePointBefore(int index)
返回指定索引之前的字元(Unicode 代碼點)。
int codePointCount(int beginIndex, int endIndex)
返回此 String 的指定文本范圍中的 Unicode 代碼點數。
int compareTo(String anotherString)
按字典順序比較兩個字元串。
int compareToIgnoreCase(String str)
不考慮大小寫,按字典順序比較兩個字元串。
String concat(String str)
將指定字元串聯到此字元串的結尾。
boolean contains(CharSequence s)
當且僅當此字元串包含 char 值的指定序列時,才返回 true。
boolean contentEquals(CharSequence cs)
當且僅當此 String 表示與指定序列相同的 char 值時,才返回 true。
boolean contentEquals(StringBuffer sb)
當且僅當此 String 表示與指定的 StringBuffer 相同的字元序列時,才返回 true。
static String ValueOf(char[] data)
返回指定數組中表示該字元序列的字元串。
static String ValueOf(char[] data, int offset, int count)
返回指定數組中表示該字元序列的字元串。
boolean endsWith(String suffix)
測試此字元串是否以指定的後綴結束。
boolean equals(Object anObject)
比較此字元串與指定的對象。
boolean equalsIgnoreCase(String anotherString)
將此 String 與另一個 String 進行比較,不考慮大小寫。
static String format(Locale l, String format, Object... args)
使用指定的語言環境、格式字元串和參數返回一個格式化字元串。
static String format(String format, Object... args)
使用指定的格式字元串和參數返回一個格式化字元串。
byte[] getBytes()
使用平台默認的字元集將此 String 解碼為位元組序列,並將結果存儲到一個新的位元組數組中。
void getBytes(int srcBegin, int srcEnd, byte[] dst, int dstBegin)
已過時。 該方法無法將字元正確轉換為位元組。從 JDK 1.1 起,完成該轉換的首選方法是通過 getBytes() 構造方法,該方法使用平台的默認字元集。
byte[] getBytes(String charsetName)
使用指定的字元集將此 String 解碼為位元組序列,並將結果存儲到一個新的位元組數組中。
void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
將字元從此字元串復制到目標字元數組。
int hashCode()
返回此字元串的哈希碼。
int indexOf(int ch)
返回指定字元在此字元串中第一次出現處的索引。
int indexOf(int ch, int fromIndex)
從指定的索引開始搜索,返回在此字元串中第一次出現指定字元處的索引。
int indexOf(String str)
返回第一次出現的指定子字元串在此字元串中的索引。
int indexOf(String str, int fromIndex)
從指定的索引處開始,返回第一次出現的指定子字元串在此字元串中的索引。
String intern()
返回字元串對象的規范化表示形式。
int lastIndexOf(int ch)
返回最後一次出現的指定字元在此字元串中的索引。
int lastIndexOf(int ch, int fromIndex)
從指定的索引處開始進行後向搜索,返回最後一次出現的指定字元在此字元串中的索引。
int lastIndexOf(String str)
返回在此字元串中最右邊出現的指定子字元串的索引。
int lastIndexOf(String str, int fromIndex)
從指定的索引處開始向後搜索,返回在此字元串中最後一次出現的指定子字元串的索引。
int length()
返回此字元串的長度。
boolean matches(String regex)
通知此字元串是否匹配給定的正則表達式。
int offsetByCodePoints(int index, int codePointOffset)
返回此 String 中從給定的 index 處偏移 codePointOffset 個代碼點的索引。
boolean regionMatches(boolean ignoreCase, int toffset, String other, int ooffset, int len)
測試兩個字元串區域是否相等。
boolean regionMatches(int toffset, String other, int ooffset, int len)
測試兩個字元串區域是否相等。
String replace(char oldChar, char newChar)
返回一個新的字元串,它是通過用 newChar 替換此字元串中出現的所有 oldChar 而生成的。
String replace(CharSequence target, CharSequence replacement)
使用指定的字面值替換序列替換此字元串匹配字面值目標序列的每個子字元串。
String replaceAll(String regex, String replacement)
使用給定的 replacement 字元串替換此字元串匹配給定的正則表達式的每個子字元串。
String replaceFirst(String regex, String replacement)
使用給定的 replacement 字元串替換此字元串匹配給定的正則表達式的第一個子字元串。
String[] split(String regex)
根據給定的正則表達式的匹配來拆分此字元串。
String[] split(String regex, int limit)
根據匹配給定的正則表達式來拆分此字元串。
boolean startsWith(String prefix)
測試此字元串是否以指定的前綴開始。
boolean startsWith(String prefix, int toffset)
測試此字元串是否以指定前綴開始,該前綴以指定索引開始。
CharSequence subSequence(int beginIndex, int endIndex)
返回一個新的字元序列,它是此序列的一個子序列。
String substring(int beginIndex)
返回一個新的字元串,它是此字元串的一個子字元串。
String substring(int beginIndex, int endIndex)
返回一個新字元串,它是此字元串的一個子字元串。
char[] toCharArray()
將此字元串轉換為一個新的字元數組。
String toLowerCase()
使用默認語言環境的規則將此 String 中的所有字元都轉換為小寫。
String toLowerCase(Locale locale)
使用給定 Locale 的規則將此 String 中的所有字元都轉換為小寫。
String toString()
返回此對象本身(它已經是一個字元串!)。
String toUpperCase()
使用默認語言環境的規則將此 String 中的所有字元都轉換為大寫。
String toUpperCase(Locale locale)
使用給定的 Locale 規則將此 String 中的所有字元都轉換為大寫。
String trim()
返回字元串的副本,忽略前導空白和尾部空白。
static String valueOf(boolean b)
返回 boolean 參數的字元串表示形式。
static String valueOf(char c)
返回 char 參數的字元串表示形式。
static String valueOf(char[] data)
返回 char 數組參數的字元串表示形式。
static String valueOf(char[] data, int offset, int count)
返回 char 數組參數的特定子數組的字元串表示形式。
static String valueOf(double d)
返回 double 參數的字元串表示形式。
static String valueOf(float f)
返回 float 參數的字元串表示形式。
static String valueOf(int i)
返回 int 參數的字元串表示形式。
static String valueOf(long l)
返回 long 參數的字元串表示形式。
static String valueOf(Object obj)
返回 Object 參數的字元串表示形式。
從類 java.lang.Object 繼承的方法
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
C. 如果用java輸出unicode編碼代表的字元
publicclassCharT{
publicstaticvoidmain(String[]args){//toChars(intcodePoint)
Stringstr="u554A";//啊字的unicode
intcodePoint=Integer.parseInt("554A",16);
char[]chs=Character.toChars(codePoint);
System.out.println(chs[0]);
}
}
應該是你要的答案吧...
D. java中StringBuffer類的常用方法有有哪些
StingBuffer類常用的一些方法有:
append( ),表示將括弧里的某種數據類型的變數插入某一序列中
charAt( ),返回此序列中指定索引處的 char 值
toString( ),返回此序列中數據的字元串表示形式。
subString( ), 返回一個新的 String,它包含此序列當前所包含的字元子序列。
delete( ),移除此序列的子字元串中的字元。
deletecharAt (), 移除此序列指定位置的 char。
insert( ),表示將括弧里的某種數據類型的變數插入某一序列中
reverse( ),將此字元序列用其反轉形式取代
setCharAt(int index, char ch ),將給定索引處的字元設置為 ch。
trimToSize (),嘗試減少用於字元序列的存儲空間。
StringBufferappend(boolean b)
將 boolean 參數的字元串表示形式追加到序列。 StringBufferappend(char c)
將 char 參數的字元串表示形式追加到此序列。 StringBufferappend(char[] str)
將 char 數組參數的字元串表示形式追加到此序列。 StringBufferappend(char[] str, int offset, int len)
將 char 數組參數的子數組的字元串表示形式追加到此序列。 StringBufferappend(CharSequence s)
將指定的 CharSequence 追加到該序列。 StringBufferappend(CharSequence s, int start, int end)
將指定 CharSequence 的子序列追加到此序列。 StringBufferappend(double d)
將 double 參數的字元串表示形式追加到此序列。 StringBufferappend(float f)
將 float 參數的字元串表示形式追加到此序列。 StringBufferappend(int i)
將 int 參數的字元串表示形式追加到此序列。 StringBufferappend(long lng)
將 long 參數的字元串表示形式追加到此序列。 StringBufferappend(Object obj)
追加 Object 參數的字元串表示形式。 StringBufferappend(String str)
將指定的字元串追加到此字元序列。 StringBufferappend(StringBuffer sb)
將指定的 StringBuffer 追加到此序列中。 StringBufferappendCodePoint(int codePoint)
將 codePoint 參數的字元串表示形式追加到此序列。 intcapacity()
返回當前容量。 charcharAt(int index)
返回此序列中指定索引處的 char 值。 intcodePointAt(int index)
返回指定索引處的字元(統一代碼點)。 intcodePointBefore(int index)
返回指定索引前的字元(統一代碼點)。 intcodePointCount(int beginIndex, int endIndex)
返回此序列指定文本范圍內的統一代碼點。 StringBufferdelete(int start, int end)
移除此序列的子字元串中的字元。 StringBufferdeleteCharAt(int index)
移除此序列指定位置的 char。 voidensureCapacity(int minimumCapacity)
確保容量至少等於指定的最小值。 voidgetChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
將字元從此序列復制到目標字元數組 dst。 intindexOf(String str)
返回第一次出現的指定子字元串在該字元串中的索引。 intindexOf(String str, int fromIndex)
從指定的索引處開始,返回第一次出現的指定子字元串在該字元串中的索引。 StringBufferinsert(int offset, boolean b)
將 boolean 參數的字元串表示形式插入此序列中。 StringBufferinsert(int offset, char c)
將 char 參數的字元串表示形式插入此序列中。 StringBufferinsert(int offset, char[] str)
將 char 數組參數的字元串表示形式插入此序列中。 StringBufferinsert(int index, char[] str, int offset, int len)
將數組參數 str 的子數組的字元串表示形式插入此序列中。 StringBufferinsert(int dstOffset, CharSequence s)
將指定 CharSequence 插入此序列中。 StringBufferinsert(int dstOffset, CharSequence s, int start, int end)
將指定 CharSequence 的子序列插入此序列中。 StringBufferinsert(int offset, double d)
將 double 參數的字元串表示形式插入此序列中。 StringBufferinsert(int offset, float f)
將 float 參數的字元串表示形式插入此序列中。 StringBufferinsert(int offset, int i)
將 int 參數的字元串表示形式插入此序列中。 StringBufferinsert(int offset, long l)
將 long 參數的字元串表示形式插入此序列中。 StringBufferinsert(int offset, Object obj)
將 Object 參數的字元串表示形式插入此字元序列中。 StringBufferinsert(int offset, String str)
將字元串插入此字元序列中。 intlastIndexOf(String str)
返回最右邊出現的指定子字元串在此字元串中的索引。 intlastIndexOf(String str, int fromIndex)
返回最後一次出現的指定子字元串在此字元串中的索引。 intlength()
返回長度(字元數)。 intoffsetByCodePoints(int index, int codePointOffset)
返回此序列中的一個索引,該索引是從給定 index 偏移 codePointOffset 個代碼點後得到的。 StringBufferreplace(int start, int end, String str)
使用給定 String 中的字元替換此序列的子字元串中的字元。 StringBufferreverse()
將此字元序列用其反轉形式取代。 voidsetCharAt(int index, char ch)
將給定索引處的字元設置為 ch。 voidsetLength(int newLength)
設置字元序列的長度。 CharSequencesubSequence(int start, int end)
返回一個新的字元序列,該字元序列是此序列的子序列。 Stringsubstring(int start)
返回一個新的 String,它包含此字元序列當前所包含的字元子序列。 Stringsubstring(int start, int end)
返回一個新的 String,它包含此序列當前所包含的字元子序列。 StringtoString()
返回此序列中數據的字元串表示形式。 voidtrimToSize()
嘗試減少用於字元序列的存儲空間。