62,623
社区成员
发帖
与我相关
我的任务
分享
public class ToInt {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String s="101010";
int i=Integer.parseInt(s, 2);
System.out.println(i);
}
}