码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
jQuery——Write less,do more
What is jQuery? jQuery is a fast, small, and feature-rich JavaScript library. Itmakes things like HTML document traversal and manipulation, event handling,animation, and Ajax much simpler with an easy-to-use API that works across amultitude of bro...
分类:Web程序   时间:2015-04-03 17:32:43    阅读次数:109
win10 系统版本号获取
微软在windows 10的版本号获取上留下一个坑,如果用GetVersionEx获取版本号,则获取到的是6.2.9200           官方有如下说明 [GetVersionEx may be altered or unavailable for releases after Windows 8.1. Instead, use the Version Helper APIs]...
分类:Windows程序   时间:2015-04-03 17:29:29    阅读次数:833
创建数据库、表、表约束以及删除约束
创建数据库:USE masterGOIF EXISTS (SELECT * FROM sysdatabases WHERE name='stuDB') DROP DATABASE stuDBCREATE DATABASE stuDBON PRIMARY(/*--数据文件的具体描述*/NAME=...
分类:数据库   时间:2015-04-03 16:58:04    阅读次数:174
Codeforces Round #170 (Div. 2)---C. Learning Languages(并查集)
The “BerCorp” company has got n employees. These employees can use m approved official languages for the formal correspondence. The languages are numbered with integers from 1 to m. For each employee w...
分类:其他好文   时间:2015-04-03 15:30:55    阅读次数:135
Sort Colors--LeetCode
题目: Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use th...
分类:其他好文   时间:2015-04-03 15:19:02    阅读次数:102
fileZilla server 安装问题
Setup FileZilla Server Passive Ports on Windows Server 2012I prefer to use FileZilla FTP Server above the traditional IIS FTP module. FileZilla comes ...
分类:其他好文   时间:2015-04-03 15:04:28    阅读次数:158
调试xcode项目报错问题解决办法
1.报错“linker command failed with exit code 1 (use -vto see invocation)”此问题需要格外注意!从source tree克隆的代码保存到本地,在用xcode打开项目的时候,一定要打开.xcworkspace文件。在用cocoa pods...
分类:其他好文   时间:2015-04-03 13:07:02    阅读次数:188
机房重构之用例图
一、为什么画用例图 用例图(Use Case Diagram)是由软件需求分析到最终实现的第一步,它描述人们如何使用一个系统。用例视图显示谁是相关的用户、用户希望系统提供什么样的服务,以及用户需要为系统提供的服务,以便使系统的用户更容易理解这些元素的用途,也便于软件开发人员最终实现这些元素。用例图在各种开发活动中被广泛的应用,但是它最常用来描述系统及子系统。   二、怎样画 用例图包含六个...
分类:其他好文   时间:2015-04-03 09:28:18    阅读次数:132
Html5 ajax上传多个图片 + nodjs保存
### nodejs端 var express = require("express"); var multer = require(‘multer‘); var _ = require(‘underscore‘) var app = express(); var done = false; /*Configure the multer.*/ app.use(function (req, ...
分类:Web程序   时间:2015-04-03 07:00:38    阅读次数:235
java第三天学习内容回顾——java白皮书第四章
java面向对象程序设计中使用到名词理解:对象标识==一个实例的变量名、对象行为==一个类的方法、对象状态==类中的数据域(严格讲是可以发生变化的数据域);类之间的关系:use_a,has_a,is_a三种java中的Math类有些特殊,它只封装了功能而并不涉及数据域,所以不需要也不必隐藏..
分类:编程语言   时间:2015-04-03 07:00:02    阅读次数:251
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!