package dataStructure_7_PreAndPost; public class TestIntegerValueOf { public static void main(String[] args) { String s = "123"; System.out.println(Integer.valueOf(s).intValue());// �Ȱ� String װ���� Integer Ȼ����ת��int } }