Problem statement: Given an m * n matrix M initialized with all 0's and several update operations. Operations are represented by a 2D array, and each ...
分类:
其他好文 时间:
2017-05-29 09:59:23
阅读次数:
154
Problem statement: Suppose Andy and Doris want to choose a restaurant for dinner, and they both have a list of favorite restaurants represented by str ...
分类:
其他好文 时间:
2017-05-29 09:59:15
阅读次数:
195
1 function Promise(fn) 2 { 3 this._resolvefun=null; 4 this._rejectfun=null; 5 this.status="pending"; 6 this.value=""; 7 this.reason=""; 8 var bind=fun... ...
分类:
其他好文 时间:
2017-05-29 09:59:07
阅读次数:
159
任务:给表单的每一列添加列名。 思考: 1.只需要添加一个函数 headerData()。 横向方面添加列名 代码如下: ...
分类:
其他好文 时间:
2017-05-29 09:58:58
阅读次数:
125
/** * The InputConnection interface is the communication channel from an * {@link InputMethod} back to the application that is receiving its * input. ...
分类:
其他好文 时间:
2017-05-29 09:58:49
阅读次数:
302
一、整数 1、Python可以处理任意大小的整数,当然包括负整数,在Python程序中, 整数的表示方法和数学上的写法一模一样,例如:1,100,200,-480等等。 2、也可以使用十六进制方式来表示一个整数,例如:0x123、0xff等等。 二、浮点数 1、浮点数也就是小数,之所以称为浮点数,是 ...
分类:
编程语言 时间:
2017-05-29 09:58:39
阅读次数:
206
https://developer.nvidia.com/compute/cuda/8.0/prod/local_installers/cuda_8.0.44_win10-exe ...
分类:
其他好文 时间:
2017-05-29 09:58:30
阅读次数:
179
Android Procedural Animation: : XML, Concepts and Optimization Procedural Animation Concepts: Tweens and Interpolators Interpolator:http://developer.a ...
分类:
移动开发 时间:
2017-05-29 09:58:21
阅读次数:
228
备注 Input输入 字符串格式化 print ...
分类:
编程语言 时间:
2017-05-29 09:58:10
阅读次数:
132
1、redis命令不区分大写和小写。可是KEY区分大写和小写。 2、redis-cli -h 127.0.0.1 -p 6379 依据IP/PORT链接服务端 3、redis-server --port 6380 --port參数设置服务端端口号 4、參数设置 A、redis-server redi ...
分类:
其他好文 时间:
2017-05-29 09:58:00
阅读次数:
190
1. Angular 模块引导 Angular没有了类似AngularJS中的<body ng-app="my-app">这样的引导指令了 通过显示调用 bootstrap 函数,并传入应用模块的名字( AppComponent)来启动应用。 NgModule是一个装饰器函数,它接收一个用来描述模块 ...
分类:
其他好文 时间:
2017-05-29 09:57:51
阅读次数:
168
### python之 继续走函数的坑 上篇文章简单介绍了函数的一些简单的使用,这次继续踩函数的坑1.函数对象 函数其实也可以当做一个参数传给另一个函数,也可以使用赋值的方式来给另一个,而且这两个的内存地址都是一 样的 def f1(): print('这个是引用的函数测试') func = f1 ...
分类:
编程语言 时间:
2017-05-29 09:57:42
阅读次数:
187
赶上端午节了,看了一下日历快六月份了,17年将要过去一半了,看了一下自己的计划表使我唯一坚持下来的估计只有晨练了,其它的事项都是蜻蜓点水,走马观花;下半年准备将那些蜻蜓点水和走马观花的部分监控起来,利用好下班两小时和假期时间。 一:文学类 上半年文学原著类看的很少,主要了解一些著名编剧陈杰的作品《大 ...
分类:
其他好文 时间:
2017-05-29 09:57:32
阅读次数:
208
翻转表生成实体类 默认生成为String类型 需要把String 类型改为 byte[] 当然映射文件也要记得改 接下来就开始写数据访问层代码 数据访问层接口实现类 业务逻辑层代码 业务逻辑层接口实现类 接下来就是action层代码 要获取blob大对象中中存储的图片首先应该将图片先读取到WebRo ...
分类:
数据库 时间:
2017-05-29 09:57:24
阅读次数:
250
一、学习js之前需要引入的概念。DOM:文档对象模型,一个html文档,就是一个dom对象(整合js,css,html)。BOM:浏览器对象模型,用于和浏览器打交道。{#1直接编写#}<script>alert(‘helloyuan‘)</script>{#2导入文件#}<scriptsrc="hello.js"></script>..
分类:
Web程序 时间:
2017-05-29 09:57:16
阅读次数:
183
如何实时查看mysql当前连接数?
1、查看当前所有连接的详细资料:
./mysqladmin-uadmin-p-h10.140.1.1processlist2、只查看当前连接数(Threads就是连接数.):
./mysqladmin-uadmin-p-h10.140.1.1status
、查看当前所有连接的详细资料:
mysqladmin-uroot-prootprocesslist
D:\My..
分类:
数据库 时间:
2017-05-29 09:57:08
阅读次数:
228
ifconfig:查看已经激活的网卡的信息 要使用ifconfig命令,必须要安装net- tools程序 yum install net- tools - y eno开头为开头的表示为虚拟机网卡 eth为开头的表示为真机(以太网卡) lo为本地回环网卡(机器内部进行传输数据) mtu 1500表示 ...
分类:
系统相关 时间:
2017-05-29 09:57:01
阅读次数:
248