10 2016 档案
摘要:代码如下: 1 /// <summary> 2 /// 坐标(结构类型) 3 /// </summary> 4 public struct Coordinate 5 { 6 public int x; 7 public int y; 8 9 public Coordinate(int x, int
阅读全文
摘要:【&】位与运算符: 按位与运算符"&"是双目运算符。 其功能是参与运算的两数各对应的二进位相与。只有对应的两个二进位均为1时,结果位才为1 ,否则为0。参与运算的数以补码方式出现。 如: 00001001 & 00000101 = 00000001 【|】位或运算符: 按位或运算符“|”是双目运算符
阅读全文
摘要:1 /** 2 依赖JQuery 3 4 5 **/ 6 7 (function () { 8 var Table = window.Table = function (rowCount, columnCount, width, height, rowHeight) { 9 this.rowCoun
阅读全文