码迷,mamicode.com
首页 >  
搜索关键字:out    ( 35870个结果
开发客户端Data Service
开发客户端Data Service服务提供了元数据查询 --myservice.svc/$metadata.net客户端:通过使用代理生成工具生成代理类 --datasvcutil /uri: /out:AJAX客户端:通过javascript脚本库进行访问--Data Service AJAX ....
分类:其他好文   时间:2015-06-01 18:21:41    阅读次数:110
Learn Java - Chapter 1 变量(Variables)-数组(Arrays)
Java数组在被创建的时候确定数组长度。索引下标从0开始。 1.数组定义及初始化 int[]?anArray;//定义 anArray?=?new?int[2];//初始化 anArray[0]?=?100;//赋值 anArray[1]?=?200;//赋值 ?? System.out.p...
分类:编程语言   时间:2015-06-01 16:58:26    阅读次数:157
LinkedList
在队列这种数据结构中,最先插入的元素将是最先被删除的元素;反之最后插入的元素将是最后被删除的元素,因此队列又称为“先进先出”(FIFO—first in first out)的线性表。LinkedList类实现了Queue接口,因此我们可以把LinkedList当成Queue来用Queue使用时要尽...
分类:其他好文   时间:2015-06-01 14:30:52    阅读次数:124
leetcode_Contains Duplicate II_easy
Given an array of integers and an integer k, find out whether there there are two distinct indices i and j in the array such that nums[i] = nums[j] and the difference between i and j is at most k. ...
分类:其他好文   时间:2015-06-01 11:40:05    阅读次数:148
LINUX-软件安装(二)
RPM包中文件提取1)cpio命令cpio命令主要有三种基本模式:“-o”模式指的是copy-out模式,就是把数据备份到文件库中;"-i"模式指的是copy-in模式,就是把数据从文件库中恢复;“-p”模式指的是复制模式,就是不把数据备份到cpio库中,而是直接复制为其他文件。命令如下:[root@l..
分类:系统相关   时间:2015-06-01 00:58:02    阅读次数:202
web
<inputtype="file"name="pic">链接硬盘获得当前时间:Datedate=newDate();out.write(date.toLocaleString());http://localhost:8080/fuxi1/index.jsp浏览器访问地址在jsp页面中嵌入Java代码需要<%%>web数据传输的两总方式1,跟着地址栏走method="GET"2,通过action传..
分类:Web程序   时间:2015-06-01 00:53:22    阅读次数:146
java面向对象接口的使用
interface USB { void start(); void stop();}class USBDisk implements USB { @Override public void start() { System.out.println("U盘插入"...
分类:编程语言   时间:2015-06-01 00:45:59    阅读次数:207
Contains Duplicate II
Contains Duplicate II问题:Given an array of integers and an integerk, find out whether there there are two distinct indicesiandjin the array such thatnu...
分类:其他好文   时间:2015-05-31 23:06:11    阅读次数:159
Java快速排序 分别以数组0位作为基准 和最后一位作为基准的排序演示
package util;public class Pub { public static void beforeSort(int[] arr){ System.out.println("before sort: "); for(int i:arr){ System.out.print(i...
分类:编程语言   时间:2015-05-31 23:02:00    阅读次数:195
对象向上、向下转型
向上转型(Son-->Father),程序会自动完成父类 父类对象 = 子类实例向下转型(Father-->Son),强制类型转换子类 子类对象 = (子类)父类实例class Father { public void tell() { System.out.println("F...
分类:其他好文   时间:2015-05-31 23:01:49    阅读次数:181
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!