将 String类型强制转换成int类型方法一:int i=System.Convert.ToInt32(String)方法二:try{int i=Int32.Parse(String);}catch{}有一些并不一定能够转换的,加一个try