1、数字 int(整型) 在32位机器上,整数的位数为32位,取值范围为-2**31~2**31-1,即-2147483648~2147483647 在64位系统上,整数的位数为64位,取值范围为-2**63~2**63-1,即-9223372036854775808~922337203685477 ...
分类:
编程语言 时间:
2020-11-30 15:51:46
阅读次数:
10
void gridView1_MouseDown(object sender, MouseEventArgs e) { GridHitInfo info; Point pt = winGridView1.gridView1.GridControl.PointToClient(Control.Mous ...
分类:
其他好文 时间:
2020-11-26 15:06:38
阅读次数:
5
一、问题如下: 1、报错信息: Uncaught (in promise) TypeError: Failed to execute 'setRequestHeader' on 'XMLHttpRequest': String contains non ISO-8859-1 code point. ...
分类:
Web程序 时间:
2020-11-25 12:12:02
阅读次数:
10
1 2 3 4 5 6 7 8 9 10 F9 resume programe 恢复程序 Alt+F10 show execution point 显示执行断点 F8 Step Over 相当于eclipse的f6 跳到下一步,逐过程,不进入方法 F7 Step Into 相当于eclipse的f5 ...
分类:
其他好文 时间:
2020-11-23 12:23:41
阅读次数:
3
1.子类 1) 定义子类 //假设父类(也叫做超类)是Employee类,用extends来表示继承 public class Manager extends Employee{ //域和方法 private double bonus; //子类的域 ... private void setBonu ...
分类:
编程语言 时间:
2020-11-23 12:08:42
阅读次数:
7
double getDistance(cv::Point pointO, cv::Point pointA) { double distance; distance = powf((pointO.x - pointA.x), 2) + powf((pointO.y - pointA.y), 2); ...
分类:
其他好文 时间:
2020-11-23 11:51:01
阅读次数:
9
什么是round-trip? Any double-precision floating-point number can be identified with at most 17 significant decimal digits. This means that if you convert ...
分类:
编程语言 时间:
2020-11-20 12:04:39
阅读次数:
12
C++11有了chrono库,可以很容易的实现定时功能。 chrono: chrono库主要包含了三种类型:时间间隔Duration、时钟Clocks和时间点Time point。 Duration: duration表示一段时间间隔,用来记录时间长度,可以表示几秒钟、几分钟或者几个小时的时间间隔, ...
分类:
编程语言 时间:
2020-11-20 11:44:25
阅读次数:
7
LatLng 代表一个有着确定经纬度坐标的地理点。 1、用例 var latlng = L.latlng(50.5,30.5); 所有Leaflet的方法中接收的LatLng参数均可以用数组[ ]或者一个表示经纬度的Key/Value表示: map.panTo( [50,30] ); map.pan ...
分类:
其他好文 时间:
2020-11-19 12:21:28
阅读次数:
5
链表简介 链表的概念: 多个元素组成的列表 元素存储不连续,用 next 指针连在一起 数组和链表的对比: **数组:**增删非首尾元素时往往需要移动元素。 链表: 增删非首尾元素时,不需要移动元素,只需要更改 next 的指向即可。 JS 中的链表 JavaScript 中没有链表这种数据结构 但 ...
分类:
其他好文 时间:
2020-11-13 13:09:08
阅读次数:
7