码迷,mamicode.com
首页 >  
搜索关键字:let    ( 14348个结果
leetcode 123. Best Time to Buy and Sell Stock III ----- java
Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may comple ...
分类:编程语言   时间:2016-11-05 15:01:33    阅读次数:317
tomcat运行php
- 参考地址:tomcat下部署php 准备材料: php:php-5.6.27-Win32-VC11-x64.zip(从官网下载) tomcat7 操作系统:windows 10 将php解压到tomcat的根目录下,将文件夹名字改为php 把php.exe所在的路径加入到path中。 将php. ...
分类:Web程序   时间:2016-11-05 14:29:55    阅读次数:238
写一个事件封装函数
var EventHandle = { addEvent:function(ele,type,handle){ if (ele.addEventListener) { ele.addEventListener(type,handle,false); }else if(attachEvent){ el ...
分类:其他好文   时间:2016-11-05 11:36:50    阅读次数:164
Command Line 7
A very common development workflow when using git looks like this: Create a branch off of master with the name of your feature. Let's say feature/bett ...
分类:其他好文   时间:2016-11-05 07:42:36    阅读次数:270
Troubleshooting Guide for HotSpot VM
https://docs.oracle.com/javase/7/docs/webnotes/tsg/TSG-VM/html/toc.html ...
分类:其他好文   时间:2016-11-05 00:13:57    阅读次数:194
sql基本操作语句
sql: 结构化查询语言T-SQL:sql server数据库中用的查询语言数据库对象操作:一、建库: 二、建表:三、数据操作 1.添加 INSERT [INTO] 表名 (列列表) VALUES(值列表) a. 列列表和值列表一一对应(顺序和个数) b。可以为null的列可以省略 c。标识列不能在 ...
分类:数据库   时间:2016-11-05 00:11:38    阅读次数:276
MVC模式下的数据展示:EasyUI的datagrid
我的数据库设计是一张老师表teacher,一张学生表student,一个教师对应多个学生,在学生一方建立外键; 还有一点想清楚,需要展示的数据是根据什么来的,是成功登陆的用户的id?还是直接展示所有的学生? student表 教师表: 我是习惯性的从后写到前,这里展示的是登录成功的老师下的学生信息 ...
分类:Web程序   时间:2016-11-04 19:49:39    阅读次数:229
Swift3.0学习之Button
1.根据字符串的长度确定Button的长度(button的高度给定) let hight:CGFloat = 30.0 let size1 = CGSize(width: getLabWidth(labelStr: "我的升级换代卡号多少", font: UIFont.systemFont(ofSi ...
分类:编程语言   时间:2016-11-04 19:46:02    阅读次数:250
iOS 闭包传值 和 代理传值
let vc = ViewController() let navc = UINavigationController(rootViewController: vc) window = UIWindow(frame: UIScreen.mainScreen().bounds) window?.bac ...
分类:移动开发   时间:2016-11-04 16:57:19    阅读次数:480
跨域访问接口上传图片出现options请求问题解决方法
1.首先因为服务器端会先发送一个option请求到后台 在后台返回一个post给页面 页面在处理post请求给接口 2.先写一个过滤器, 我们自己定义一个过滤器 package com.adtime.dsp.web.controller; import java.io.IOException; im ...
分类:Web程序   时间:2016-11-04 16:42:55    阅读次数:348
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!