class myClass
{
    int x;
    public myClass(int i)//constructor1
    {
        x = i;
    }
    public myClass(String s)//constructor2
    {
        this(Integer.parseInteger(s));// here!!!!!!!!!!!!!!!!!
    }
}if i want to change constructor2
    public myClass(String s)//constructor2
    {
        int i = Integer.parseInteger(s);
        // here what should i do???????????????????????????
    }
help?????????????????????????????????????????????????