Android 1.8.4版本进入房间后更改角色调用changeAVControlRole()方法返回 i = 1, s = 请输入正确的流控角色方法传入参数为“VideoMember” 之前SDK版本为1.8.1时使用没有问题,更换SDK版本后回调返回上面的结果。
只需按照如下所示:
public class Deletable implements Cloneable{
private String str;
public Deletable(){
}
public void setStr(String str){
this.str = str;
}
public void display(){
System.out.println("The String is "+str);
}
protected Object clone() throws CloneNotSupportedException {
return super.clone();
}
}
无论你想获得另一个对象,简单地执行克隆。例如:
Deletable del = new Deletable();
Deletable delTemp = (Deletable ) del.clone(); // this line will return you an independent
// object, the changes made to this object will
// not be reflected to other object
创建一个拷贝构造函数:
class DummyBean {
private String dummy;
public DummyBean(DummyBean another) {
this.dummy = another.dummy; // you can access
}
}
每个对象都有一个克隆方法可以用来复制对象,但最好不要使用它。