码迷,mamicode.com
首页 >  
搜索关键字:gety    ( 189个结果
基于 HTML5 WebGL 的 智慧楼宇能源监控系统
21世纪,在能源危机和全球气候变暖的压力下,太阳能等可再生能源越来越受到关注,其中光伏建筑一体化逐渐成为绿色发展方式和生活方式,加强节能降耗,支持低碳产业和新能源、可再生能源发展,也已经成为国家战略,所以基于数据进行管理和监控的智慧楼宇能源系统已经成为了一种趋势。通过数据我们可以直观对建筑执行能耗量... ...
分类:Web程序   时间:2020-04-01 23:29:38    阅读次数:109
C++点类、园类、圆柱类继承与多态
#include<iostream> using namespace std; class Point{ public: Point(float=0,float=0); void setPoint(float,float); float getX()const{return x;} float ge ...
分类:编程语言   时间:2020-03-14 10:44:17    阅读次数:60
echarts实现中国地图
本项目是从数据库中获取数据然后在web页面上展示地图界面,用到了echarts 接下来是目录展示: 接下来展示各个文件的内容 base2文件的内容: package two; public class base2 { String shengfen; String renshu; public St ...
分类:其他好文   时间:2020-03-14 10:36:17    阅读次数:56
07-js的常用对象和方法
<html> <head> <title>js的常用对象和方法</title> <meta charset="UTF-8"/> <!-- 常用的对象和方法: 1、String 2、Date 3、Math 4、Global --> <!--声明js代码域--> <script type="text/j ...
分类:Web程序   时间:2020-03-04 18:58:35    阅读次数:67
使用Azure Monitor监控服务运行状态
在多数的运维工作中,我们除了要关注系统资源的使用率也要关注应用服务的健康状况,从而确保系统可以持续的对外提供服务。那么我们如何使用Azure Monitor来监控服务的健康状况呢。监视Windows和Linux服务的最佳选择之一是利用Azure自动化中的变更跟踪解决方案。
分类:其他好文   时间:2020-02-20 18:42:50    阅读次数:220
正则验证身份证,比较全面的一个方法
function checkIdcard(gets){ var Wi = [ 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2, 1 ];// 加权因子; var ValideCode = [ 1, 0, 10, 9, 8, 7, 6, 5, 4 ...
分类:其他好文   时间:2020-02-07 10:25:28    阅读次数:79
自考新教材-p90_5(3)
源程序: #include <iostream>#include <math.h>using namespace std;class Point{private: float x, y;public: Point(float a, float b); float getX(); float getY ...
分类:其他好文   时间:2020-02-06 20:16:27    阅读次数:77
vue 里面日历能够自定义价格。
cell-month 组件 <template> <div class="cell-month"> <div class="weeklist"> <!--星期几--> <div class="week_box"> <p v-for="(item,index) in weekData"> {{item ...
分类:其他好文   时间:2020-01-08 18:37:58    阅读次数:351
c++组合类构造函数顺序
~~~c include include using namespace std; class Point{ private: int x, y; public: Point(int a = 0, int b = 0) { x = a; y = b; cout << "Point construct ...
分类:编程语言   时间:2019-12-24 09:51:44    阅读次数:88
getX,getY,getScrollX,getScrollY,ScrollTo(),ScrollBy()辨析
前言:前两天看了自定义控件,其中有一些东西我觉得有必要深入理解一下 以下图为例: getX(),getY()返回的是触摸点A相对于view的位置 getRaw(),getRawY()返回的是触摸点B相对于phone(屏幕)的位置。 scrollTo是将View中的内容移动到指定的坐标x,y处,此x, ...
分类:其他好文   时间:2019-12-21 00:31:00    阅读次数:80
189条   上一页 1 2 3 4 ... 19 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!