首页 > 其他
华为MSTP负载均衡配置示例
本篇通过具体的示例介绍了华为S系列交换机中,通过MSTP协议实现不同VLAN流量负载均衡的配置方法。...
分类:其他   时间:2014-02-27 23:56:27    收藏:0  评论:0  赞:0  阅读:804
C# 限制Text只能输入数字
private void InputNumber(KeyPressEventArgs e) { //限制用户只能输入数字 if ((e.KeyChar 57) && e.KeyChar != 8) { e.Handled = true; } }适合EXT keycode的查询A 65 B 66 C ...
分类:其他   时间:2014-02-27 23:30:35    收藏:0  评论:0  赞:0  阅读:489
[C#]读取指定路径的配置文件[转]
ExeConfigurationFileMap map = new ExeConfigurationFileMap(); map.ExeConfigFilename = @"C:\App.config"; ; Configuration config = ConfigurationManager.O...
分类:其他   时间:2014-02-27 23:28:36    收藏:0  评论:0  赞:0  阅读:540
java基础之Java变量命名规范
本文介绍的是java中的变量的命名规则,对于初学者来说,还是很重要的。希望对你有帮助,一起来看。Java是一种区分字母的大小写(case-sensitive)的语言,下面谈谈Java语言中包、类、变量等的命名规范。(一)Package(包)的命名:Package的名字应该都是由一个小写单词组成,例如...
分类:其他   时间:2014-02-27 23:25:40    收藏:0  评论:0  赞:0  阅读:558
Lua 简单的IO交互 和迷宫代码
1 function room1 () 2 print("in room1") 3 local move = io.read() 4 if move == "south" then 5 return room3() 6 elseif move == "east" then 7 return room...
分类:其他   时间:2014-02-27 23:24:43    收藏:0  评论:0  赞:0  阅读:604
canvas的性能优化
canvas玩多了后,就会自动的要开始考虑性能问题了。怎么优化canvas的动画呢?【使用缓存】使用缓存也就是用离屏canvas进行预渲染了,原理很简单,就是先绘制到一个离屏canvas中,然后再通过drawImage把离屏canvas画到主canvas中。可能看到这很多人就会误解,这不是写游戏里面...
分类:其他   时间:2014-02-27 23:23:39    收藏:0  评论:0  赞:0  阅读:699
vs2013下的WCFRest 模板开发WCF
在vs2013下使用wcfRestservice40 是安装不成功的,尝试多遍,都是这样。查看以前vs2012做的wcfrest,经过调教,终于在vs2013下也可以了!1.新建wcf服务应用程序2.调制配置文件 element below --> View Code 3.添加全局应用程序类 Glo...
分类:其他   时间:2014-02-27 23:20:47    收藏:0  评论:0  赞:0  阅读:609
C#详解DataTable计算功能的实现
using System; using System.ComponentModel; using System.Data; using System.Windows.Forms; namespace WindowsApplication1 { public partial class Form1 :...
分类:其他   时间:2014-02-27 23:20:19    收藏:0  评论:0  赞:0  阅读:636
shell字符串操作详解
shell字符串操作详解的相关资料.1、shell变量声明的判断表达式 含义${var} 变量var的值, 与$var相同${var-DEFAULT} 如果var没有被声明, 那么就以$DEFAULT作为其值 *${var:-DEFAULT} 如果var没有被声明, 或者其值为空, 那么就以$DEF...
分类:其他   时间:2014-02-27 23:19:16    收藏:0  评论:0  赞:0  阅读:560
linux shell 逻辑运算符、逻辑表达式
shell的逻辑运算符 涉及有以下几种类型,因此只要适当选择,可以解决很多复杂的判断。一、逻辑运算符逻辑卷标 表示意思1. 关于档案与目录的侦测逻辑卷标!-f 常用!侦测『档案』是否存在 eg: if [ -f filename ]-d 常用!侦测『目录』是否存在-b 侦测是否为一个『 block ...
分类:其他   时间:2014-02-27 23:18:48    收藏:0  评论:0  赞:0  阅读:610
(原创)mac 10.9.2 eclipse 的 CDT 的 异常的修复
测试平台:macbook air 2012 , os x 10.9.2 , eclipse 4.3在升级了 10.9 之后,eclipse 的CDT 无法正常使用了异常表现:1. 文件乱码2. command + b 后异常的错误(编译异常)3.Launch Failed Binary Not Fo...
分类:其他   时间:2014-02-27 23:17:15    收藏:0  评论:0  赞:0  阅读:718
java常量
http://developer.51cto.com/art/200907/136830.htm
分类:其他   时间:2014-02-27 23:14:54    收藏:0  评论:0  赞:0  阅读:615
parking lot
We follow the four steps in the design principle:FUNCTIONThere are three types of parking spaces: motorbike, car and handicapped car. Motorbikes and c...
分类:其他   时间:2014-02-27 23:15:21    收藏:0  评论:0  赞:0  阅读:623
OpenJudge/Poj 1191 棋盘分割
1.链接地址:http://bailian.openjudge.cn/practice/1191/http://poj.org/problem?id=11912.题目:总时间限制:1000ms内存限制:65536kB描述将一个8*8的棋盘进行如下分割:将原棋盘割下一块矩形棋盘并使剩下部分也是矩形,再...
分类:其他   时间:2014-02-27 23:13:22    收藏:0  评论:0  赞:0  阅读:735
OpenJudge/Poj 1753 Flip Game
1.链接地址:http://bailian.openjudge.cn/practice/1753/http://poj.org/problem?id=17532.题目:总时间限制:1000ms内存限制:65536kB描述Flip game is played on a rectangular 4x4...
分类:其他   时间:2014-02-27 23:12:51    收藏:0  评论:0  赞:0  阅读:920
context startactivity
http://www.eoeandroid.com/thread-263361-1-1.html
分类:其他   时间:2014-02-27 23:12:22    收藏:0  评论:0  赞:0  阅读:658
LeetCode - Word Ladder II
Word Ladder II2014.2.13 01:23Given two words (startandend), and a dictionary, find all shortest transformation sequence(s) fromstarttoend, such that:O...
分类:其他   时间:2014-02-27 23:11:58    收藏:0  评论:0  赞:0  阅读:635
Stateless Iterators
As the name implies, a stateless iterator is an iterator that does not keep any state by itself. Therefore, we may use the same stateless iterator in ...
分类:其他   时间:2014-02-27 23:11:01    收藏:0  评论:0  赞:0  阅读:645
(转) Virtual function
原文地址:http://en.wikipedia.org/wiki/Virtual_functionInobject-oriented programming, avirtual functionorvirtual methodis afunctionormethodwhose behavior c...
分类:其他   时间:2014-02-27 23:11:28    收藏:0  评论:0  赞:0  阅读:724
LeetCode - Word Ladder
Word Ladder2014.2.27 02:14Given two words (startandend), and a dictionary, find the length of shortest transformation sequence fromstarttoend, such th...
分类:其他   时间:2014-02-27 23:09:58    收藏:0  评论:0  赞:0  阅读:401
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!