码迷,mamicode.com
首页 >  
搜索关键字:static router    ( 49087个结果
asp.net 根据当前时间获取本周、上周、下周的周一、周日日期
//本周周一日期,返回结果格式:2014-5-5 0:00:00public static DateTime GetMondayDate(){ DateTime dt=DateTime.Now; int today=(int)dt.DayOfWeek; if(dt.DayOfWeek.Tost...
分类:Web程序   时间:2014-05-08 18:37:12    阅读次数:367
java实现——030最小的k个数
1.O(nlogk)海量数据 1 import java.util.TreeSet; 2 3 public class T030 { 4 public static void main(String[] args){ 5 int[] data = {4,5,1,6,2,7,...
分类:编程语言   时间:2014-05-08 18:07:12    阅读次数:422
java输入输出
1、import java.io.*;//写进文档,然后又在显示器显示出来。public class fileinputstream{public static void main(String[] args) throws IOException {DataOutputStream out = n...
分类:编程语言   时间:2014-05-08 15:40:06    阅读次数:376
如何理解java的引用传递
1. 数组的引用传递public class TestArray { public static void changeAry1(int[] ary){ int[] ary1 = {9,9,9}; ary = ary1; } public stat...
分类:编程语言   时间:2014-05-08 09:21:18    阅读次数:370
note: Spanner: Google’s Globally-Distributed Database
1. Abstract & introductionref:http://static.googleusercontent.com/media/research.google.com/zh-CN//archive/spanner-osdi2012.pdfSpanner是google为了弥补bigta...
分类:数据库   时间:2014-05-08 06:46:57    阅读次数:640
[XBee] ZigBee学习笔记
转自:http://blog.csdn.net/wanghanjiett/article/details/6931867 几个重要概念: node(节点): 在zigbee堆栈中最多有三种节点:Coordinator(协调器)、Router(路由器)、End Device(终端)。 其中Coordi...
分类:其他好文   时间:2014-05-08 06:45:51    阅读次数:370
File类的基本操作之读出全部文件夹路径
package org.mark.file; import java.io.File; /** * File类的基本操作之读出全部文件夹路径 * 如果给定一个目录,要求将此目录中的全部文件都列出来 * 使用递归 */ public class TestChare { /** * @param args */ public static void main(String[]...
分类:其他好文   时间:2014-05-08 03:53:29    阅读次数:259
exec-timeout
exec-timeout50//设置在登录路由器后,不做任何操作的情况下,5分0秒后将与路由器断开。如果不输入此命令,当你进入路由器没有输入任何内容时,10分钟后将被路由器自动踢出。“exec-timeout”命令的完整形式为:exec-timeoutxx(也就是exec-timeout分秒)注:如果你在此输入“e..
分类:其他好文   时间:2014-05-08 03:25:46    阅读次数:328
java实现——004替换空格
1.创建新的字符串 1 public class T004 { 2 public static void main(String[] args){ 3 System.out.println(replaceBlank("we are happy")); 4 } 5 ...
分类:编程语言   时间:2014-05-08 01:08:18    阅读次数:364
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!