码迷,mamicode.com
首页 >  
搜索关键字:centos 7.0 hostname static    ( 78606个结果
类的const成员变量
当类中用到一些固定值时,希望将其定义为const成员变量,防止被修改。但因为const成员变量因为初始化之后就不能修改,因此只能在构造函数的初始化列表中初始化如果是数组,则没有办法在初始化列表中初始化,必须定义为static,放在类外定义例子://const_array.h#include usin...
分类:其他好文   时间:2014-05-12 12:16:52    阅读次数:228
beanUtils的用法
举例1:使用BeanUtils工具封装用户提交的数据。 1 public static void main(String[] args)throws Exception { 2 3 // 模拟用户的输入的数据如下 4 5 String name = "XML基础"; ...
分类:其他好文   时间:2014-05-12 12:05:34    阅读次数:211
C# this和base
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(stri...
分类:其他好文   时间:2014-05-12 11:46:04    阅读次数:215
简单工厂模式
简单工厂模式(Simple Factory Pattern)属于类的创新型模式,又叫静态工厂方法模式(Static FactoryMethod Pattern),是通过专门定义一个类来负责创建其他类的实例,被创建的实例通常都具有共同的父类。
分类:其他好文   时间:2014-05-12 11:20:18    阅读次数:254
路径,通过navigation可以查看 *.class文件
?.class文件内的代码所在的文件的路径默认 1 举例1:读取项目根目录下的数据。 2 private static void readRoot() throws FileNotFoundException, IOException { 3 BufferedReader br = new ...
分类:其他好文   时间:2014-05-12 11:13:12    阅读次数:283
转换人民币大小金额
C#控制台测试 class Program { static void Main(string[] args) { decimal rmb = Convert.ToDecimal(Console.ReadLine()); ...
分类:其他好文   时间:2014-05-12 10:42:25    阅读次数:377
Java 拾遗
1、选择表达式中的类型转换public class Test { public void static main(String args[]){ int i = 5; System.out.println("Vlaue Is " + ((...
分类:编程语言   时间:2014-05-12 09:39:52    阅读次数:294
关于时间的转换
//把秒转换成分钟 /// /// 把秒转换成分钟 /// /// public static int SecondToMinute(int Second) { // / 换成 * 号...
分类:其他好文   时间:2014-05-12 09:33:41    阅读次数:198
阿里云64位centos6.3系统上编译安装redis
环境系统:阿里云64位centos 6.3[rao@AY~]$ cat /etc/issueCentOS release 6.3 (Final)Kernel \r on an \m[rao@AY~]$ uname -aLinux AY1404062027584053a1Z 2.6.32-358.6....
分类:其他好文   时间:2014-05-12 09:27:33    阅读次数:510
将日期类型转换成年月日的形式
如题. 1 namespace sanyuandemo 2 { 3 class Program 4 { 5 static void Main(string[] args) 6 { 7 DateTime dateTime = Da...
分类:其他好文   时间:2014-05-10 23:01:05    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!