1 using System; 2 using System.Collections.Generic;
3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6
using System.Linq; ....
分类:
其他好文 时间:
2014-05-09 16:00:14
阅读次数:
209
using System;using System.IO;using
System.Messaging;namespace YuRen.PaiWei.BaLianGui{ /// /// MQ文件发送 ///
所有异常都将抛出请做好异常处理 /// public s...
分类:
其他好文 时间:
2014-05-09 15:50:53
阅读次数:
807
using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
System.Threading.Tasks;namespace OverrideTest{ class A {...
分类:
其他好文 时间:
2014-05-09 13:43:24
阅读次数:
291
出自《Java深入解析》的例子例1、先看一段代码:public static void
main(String[] args) { double d1 = 0.1; double d2 = 0.2; System.out.println("" +
d1 + ...
分类:
编程语言 时间:
2014-05-09 13:24:54
阅读次数:
356
When you’re running Ubuntu and updating your
system frequently, there is a high chance that older kernels that are no longer
needed are still installe...
分类:
其他好文 时间:
2014-05-09 13:19:09
阅读次数:
311
对于学习一门新的语言,关键是学习新语言和以前掌握的语言的区别,但是也不要让以前语言的东西,固定了自己的思维模式,多看一下新的语言的编程思想。1.引包 using
System;java用import2.构造函数和java语法相同3.析构函数 变量和类的对象都有生命周期,生命周期结束,这些变量和对象就...
分类:
编程语言 时间:
2014-05-09 12:54:07
阅读次数:
390
显示系统已经安装的组件,和可以安装的组件:#yum
grouplist如果系统安装之初采用最小化安装,没有安装xwindow,那么先安装:#yum groupinstall "X Window
System"安装GNOME桌面环境yum groupinstall "GNOME Desktop Env...
分类:
其他好文 时间:
2014-05-09 12:51:43
阅读次数:
236
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;using
System.Threading;using System.Run...
分类:
其他好文 时间:
2014-05-09 07:46:58
阅读次数:
370
这道题就是找规律啊!!!想想啊,11和10是可以连续的,那么10和11也是可以连续的。下面是AC代码:
1 /** 2 * The gray code is a binary numeral system where two successive values
differ in on...
分类:
其他好文 时间:
2014-05-09 07:38:17
阅读次数:
325
public class sample{public static void
main(String[]
args){//得到类的简写名称System.out.println(sample.class.getSimpleName());//得到对象的全路径System.out.println(sam...
分类:
其他好文 时间:
2014-05-09 07:17:59
阅读次数:
242