我正在开发一个javascript程序项目,如下所示......
var temp = 14;
var y 2;
temp <<= y;
document.write(temp)
....我无法弄清楚&lt;&lt; =运算符如何工作该程序如何工作。有人可以解释它是如何工作的吗?谢谢。
答案 0 :(得分:2)
这是一个按位左移运算符。有关详细信息,请查看here
class I extends N {
private S s;
public I(S s) {
this.s = s;
}
}
class O extends N {
private S s;
private P p;
public O(S s, P p) {
this.s = s;
this.p = p;
}
}
class H extends N {
private P p;
public H(P p) {
this.p = p;
}
}
interface P {
public String getProperty();
}
interface S {
public String getProperty();
}
向左移位二进制表示b(&lt; 32)位,从右移零。