public class NewtonsLaw
{
public static Integer force(Integer m,Integer n,Integer h)
{
Integer p = m*2+n+h;
return p;
}
public static int force3(Integer m)
{
Integer q= 23;
return m;
}
}
所以我想整個類的身體(大括號之間)的內容..請幫助。嗨,使用java的正則表達式我怎樣才能得到兩個大括號之間的類體
作爲輸出我想: 公共靜態整數力(整數米,整數n,整數1H){整數p = M * 2 + N + H;返回p; } public static int force3(Integer m){Integer q = 23;返回m; } – Saikat
我沒有得到你的問題 –
使用java的正則表達式我怎麼能拿出一個類的全部內容,就像我上面寫的類NewtonsLaw,我想要使用java正則表達式的輸出:public static Integer force(Integer m,整數n,整數h) 整數p = m * 2 + n + h; return p; } public static int force3(Integer m) { Integer q = 23; return m; } – Saikat