-
[C/C++]指针详解(3) — 指针表达式
By SUNJIAN on 12月 3rd, 2008 | 5 Comments
续: [C/C++]指针详解(1) — 复杂数据类型与指针 [C/C++]指针详解(2) — 指针运算与运算符 4、指针表达式 一个表达式的结果如果是一个指针,那么这个表达式就叫指针表式。下面是一些指针表达式的例子: 例七: int a,b; int array[10]; int *pa; pa=&a; //&a 是一个指针表达式。 Int **ptr=&pa; //&pa 也是一个... -
Linux配置CVS服务器 — Setup Concurrent Version System
By SUNJIAN on 11月 29th, 2008 | 15 Comments
所谓的CVS服务器就是一个便于团队开发的版本控制系统。CVS(Concurrent Version System)的功能在于,在一个团队中开发者可以按照自己的开发进程或者方式,独立的进行开发中所属模块的开发,完毕之后只要提交到CVS服务器上面整合就可以了。这在软件工程中是一件非常美妙的事情。下面是服务器配置的大概... -
周公解梦-手机版开发分享
By qintao on 11月 29th, 2008 | 15 Comments
《周公解梦 》 中国的文化精髓,虽然大家受过很不错的教育,从小就给我们灌输着这些东西都是迷信之类的东西,但是一个民族几千年积淀下来的璀璨文明难道就一点灭有道理吗? 有句话叫做世界上不是批判的人最聪明,包容的人才是最聪明的人! 这么多人都说它有一定的道理 不知道为何我们的教... -
主流JAVA数据库连接技术 — Mainstream For JAVA Database Connection
By SUNJIAN on 11月 23rd, 2008 | 4 Comments
目前为止Java程序可以通过4种主流技术连接到数据库: 第一种称之为硬连(你也可以叫做原始连,苦力连)。方法是在类中通过Class类的static方法forName(String ClassName)将数据库的驱动类加载到程序中。驱动可以在网上下。然后使用DriverManager的静态方法getConnnection(String sourceURL,String UserName,String Password)打开一个... -
编程风格:提供代码可读性(Programming Style: Writing for Readability)
By qintao on 11月 23rd, 2008 | 5 Comments
There are a lot of ways to solve the same problem in C or C++. This is both good and bad; it is good because you have flexibility. It’s also bad because you have flexibility–the flexibility to choose different solutions to the same problem when it shows up in different places. This is confusing because it obscures the underlying similarity between the problems. 在编写代码的时... -
(如何利用J2ME获得IMEI编码)How to get IMEI in Java ME
By qintao on 11月 23rd, 2008 | 4 Comments
IMEi what is IMEI The IMEI (International Mobile Equipment Identity) is a unique 17 or 15 digit code used to identify an individual mobile station to a GSM or UMTS network. The IMEI number provides an important function; it uniquely identifies a specific mobile phone being used on a mobile network. The IMEI is a useful tool to prevent a stolen handset from accessing a network and being used to pla...


最新江湖风雨云