最新的网络安全咨询!

〓.::展翅高飞::.〓

Archives Posts

Linux图形界面编程基本知识

6月 5th, 2009 by XSign

很多LINUX初学者分不清楚linux和X之间,X和Xfree86之间,X和KDE,GNOME等之间是什么关系.常常混淆概念,我想以比较易于理 解的方式说明一下X,X11,XFREE,WM,KDE,GNOME等之间的关系.由于本人水平有限可能存在错误,请高手指正.
Read the rest of this entry »

Archives Posts

让SQL Server Express支持远程连接

5月 12th, 2009 by XSign

近来一直在做一个数据记录打印项目,由于项目太小,不值得上大型关系数据库,以前的Access数据库又因其太过于简单,用于做中心数据库还是觉得有些功能不全,因此SQL Server 2005 Express便成为了首选,而且这个数据库是免费的。
Read the rest of this entry »

Archives Posts

InputStreamReader类获得输入

4月 3rd, 2008 by XSign

import java.lang.*;
import java.io.*;

public class StringTest4 {

  public static void main(String arg[]){
  InputStreamReader d=new InputStreamReader(System.in);
Read the rest of this entry »

Archives Posts

感染c源程序的病毒

3月 29th, 2008 by XSign

#include <stdio.h>
#include
<string.h>
#include
<dir.h>
#include
<io.h>
Read the rest of this entry »

Archives Posts

给学Java的大学生们分享一些经验

3月 26th, 2008 by XSign

想来学习Java也有两个年头了,永远不敢说多么精通,但也想谈谈自己的感受,写给软件学院的同仁们,帮助大家在技术的道路上少一点弯路。说得伟大一点是希望大家为软件学院争气,其实最主要的还是大家自身的进步提升——
Read the rest of this entry »

Archives Posts

typedef struct与struct的区别

3月 15th, 2008 by XSign

1. 基本解释

  typedef为C语言的关键字,作用是为一种数据类型定义一个新名字。这里的数据类型包括内部数据类型(int,char等)和自定义的数据类型(struct等)。

  在编程中使用typedef目的一般有两个,一个是给变量一个易记且意义明确的新名字,另一个是简化一些比较复杂的类型声明。
Read the rest of this entry »

Archives Posts

指针数组的运用

3月 13th, 2008 by XSign

如果过有如下定义:

char *s[2];
Read the rest of this entry »