Robin Lu's Blog

能吃能喝的活着工作着......

基础编程  Unicode汉字编码表

clock 2011-08-08 16:42
Unicode汉字编码表 [更多]

基础编程  [转]Difference among Int32.Parse(), Convert.ToInt32(), and Int32.TryParse()

clock 2011-03-25 23:39
关于几个字符串转整型的方法的差异 [更多]

基础编程  正则表达式简述

clock 2010-05-08 17:13
正则表达式的基本知识 [更多]

基础编程  常用的三种编程命名方法

clock 2010-04-30 13:31
常用的编程命名方法有匈牙利命名法、巴斯卡命名法和驼峰式命名法三种。 [更多]

基础编程 | 转载  .net Naming Conventions and Programming Standards - Best Practices

clock 2010-04-30 13:17
This article is the single most popular bit of content from my old site and blog, bar none. While I think books such as the .NET Framework Design Guidelines by Krzystof Cwalina and Brad Abramsdo a better job explaining all the standards, I've kept this page up for quick reference and to suppo... [更多]

基础编程  运行第一个Java程序

clock 2009-11-10 16:07
用Java来编写Hello World程序。代码如下: public class HelloWorld{ public static void main(String[] args){ System.out.println("Hello World!"); } } 中间犯的错误和学习的体会有:1)以为像C#一样,写了一个引用语句,import System;了,原来是自己搞错了,System类是属于java.lang包(提供利用 Java 编程语言进行程序设计的基础类)的,System只是一个类,不是包(类似于命名空间),不知道为什么... [更多]