0

我正在寻找一种解决方案,它将为我提供密码变量的值传递的每个变量的名称。也就是说,{pass, temp, temp1, var1}

class Student{
    public static void main(String args[]){
        String password="GOPAL12345";
        Student student=new Student();
        String var1=student.passPassword(password);
        System.out.println("Password is--> "+var1);
    }
    public String passPassword(String pass){
        String temp=pass;
        String temp1=temp;
        return temp1;
    }
}

我希望这在运行时完成。

4

1 回答 1

1

这是不可能的。变量名 {pass, temp, temp1, var} 在运行时不存在。

于 2013-05-16T03:48:54.407 回答