我有一个变量:
String MyClass = "MyClass"
我想在这里使用它:
Intent intent = new Intent(this, MyClass.class);
startActivity(intent);
或者:
Intent intent = new Intent(this, MyClass.ToString().class);
startActivity(intent);
它不起作用......如何将值传递MyClass
给 Intent 构造函数?