<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_slan的学习笔记</title><subtitle type="text">天马行空的想,脚踏实地的做!</subtitle><id>http://feed.cnblogs.com/blog/u/22637/rss</id><updated>2006-11-11T15:10:43Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/22637/rss"/><entry><id>http://www.cnblogs.com/slan/archive/2006/11/11/557983.html</id><title type="text">Linux不能上网问题</title><summary type="text">今天突然来了兴致,想装个真正的LINUX系统,因为以前只是在虚拟机上运行,觉得那种速度实在是把活人憋死.经过一番努力,最后终于装成功了.嘿嘿小高兴一下!后来发现居然不能上网.请大家发表各自看法.情况如下:本人是校内局域网IP.手动设置好了IP,DNS,并也保存了修改.IP可以PING通,不过网关不行.问题出在哪啊?请各位知情人士帮忙!</summary><published>2006-11-11T15:11:00Z</published><updated>2006-11-11T15:11:00Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><link rel="alternate" href="http://www.cnblogs.com/slan/archive/2006/11/11/557983.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/archive/2006/11/11/557983.html"/></entry><entry><id>http://www.cnblogs.com/slan/archive/2006/11/08/554691.html</id><title type="text">怎么都没人留下评论啊</title><summary type="text">昏迷,偶今天发现偶的博客看贴的人挺多.可是就是没有一个回贴的.这样可不厚道啊.没有一个评论咋行?希望大家多提意见.偶也好改进!</summary><published>2006-11-08T15:19:00Z</published><updated>2006-11-08T15:19:00Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><link rel="alternate" href="http://www.cnblogs.com/slan/archive/2006/11/08/554691.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/archive/2006/11/08/554691.html"/></entry><entry><id>http://www.cnblogs.com/slan/archive/2006/11/08/554168.html</id><title type="text">终于完成博客大"搬"家</title><summary type="text">哈哈.终于在历时半天的时间中完成了博客大搬家.此次搬家害我逃了半节上机课,错过下午午休时间.不管怎样,搬家成功!</summary><published>2006-11-08T06:31:00Z</published><updated>2006-11-08T06:31:00Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><link rel="alternate" href="http://www.cnblogs.com/slan/archive/2006/11/08/554168.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/archive/2006/11/08/554168.html"/></entry><entry><id>http://www.cnblogs.com/slan/archive/2006/11/08/554166.html</id><title type="text">JAVA系列学习</title><summary type="text">这学期暑假正式进入JAVA系列学习先学JAVA语言基础，然后（选下列一类学习）：* GUI 类：JavaBean -&amp;gt; Swing -&amp;gt; JavaHelp -&amp;gt; Java2D -&amp;gt; Image IO -&amp;gt; JAI -&amp;gt; Java 3D ...* Enterprise 类：JDBC -&amp;gt; JDO -&amp;gt; Servlet -&amp;gt; JSP -&amp;gt; E...</summary><published>2006-11-08T06:27:00Z</published><updated>2006-11-08T06:27:00Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><link rel="alternate" href="http://www.cnblogs.com/slan/archive/2006/11/08/554166.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/archive/2006/11/08/554166.html"/></entry><entry><id>http://www.cnblogs.com/slan/archive/2006/11/08/554164.html</id><title type="text">某培训机构的JAVA课程安排</title><summary type="text">学习内容 课程名称 学时 1 计算机软件及网络基础 CNB 2 结构化查询语言SQL，数据库体系结构及管理 SDM 3 ODBC、JDBC介绍和实例分析 OJDBC 4 Java基本语法，JAVA语言概述，面向对象编程 JBO 5 程序逻辑及Java语言实现 LGJ 6 基于Java的程序设计方法 JDM 7 输入/输出处理、多线程与网络通信 CPD 8 基于Java开发项目的阶段实习 JPR 9...</summary><published>2006-11-08T06:25:00Z</published><updated>2006-11-08T06:25:00Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><link rel="alternate" href="http://www.cnblogs.com/slan/archive/2006/11/08/554164.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/archive/2006/11/08/554164.html"/></entry><entry><id>http://www.cnblogs.com/slan/archive/2006/11/08/554161.html</id><title type="text">虚函数的作用</title><summary type="text">可以让成员函数操作一般化，用基类的指针指向不同的派生类的对象时， 基类指针调用其虚成员函数，则会调用其真正指向对象的成员函数， 而不是基类中定义的成员函数（只要派生类改写了该成员函数）。 若不是虚函数，则不管基类指针指向的哪个派生类对象，调用时都 会调用基类中定义的那个函数。程序1：＃i nclude &amp;lt;iostream&amp;gt;using namecpace std;class B0//基类...</summary><published>2006-11-08T06:25:00Z</published><updated>2006-11-08T06:25:00Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><link rel="alternate" href="http://www.cnblogs.com/slan/archive/2006/11/08/554161.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/archive/2006/11/08/554161.html"/></entry><entry><id>http://www.cnblogs.com/slan/archive/2006/11/08/554159.html</id><title type="text">简单程序--征解!</title><summary type="text">一个很简单的程序,请大家解释下结果的原因:＃i nclude&amp;lt;iostream&amp;gt;using namespace std;void main(){ int a=5;cout&amp;lt;&amp;lt;a&amp;lt;&amp;lt;a--&amp;lt;&amp;lt;a;}大家觉得结果是多少呢?为什么?</summary><published>2006-11-08T06:24:00Z</published><updated>2006-11-08T06:24:00Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><link rel="alternate" href="http://www.cnblogs.com/slan/archive/2006/11/08/554159.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/archive/2006/11/08/554159.html"/></entry><entry><id>http://www.cnblogs.com/slan/archive/2006/11/08/554157.html</id><title type="text">[转]一个高级黑客给黑客同胞们的匿名信</title><summary type="text">所有中国黑客和红客，我的同胞们: 　　首先声明，我的计算机软件技术、黑客功底，可能不会比你们任何人差:　　我通读过 minix，tcp/ip，bsd,linux, pl1的源码，我拿过中国高级程序员证书，sun 的java证书，精通vc和unix，对缓冲区溢出，病毒，ddk等均有研究，所以我想我有资格对你们说几句话。　　(如果我提到的一些计算机名词和人名，你们居然不知道，那只能证明你们的无知，和不...</summary><published>2006-11-08T06:23:00Z</published><updated>2006-11-08T06:23:00Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><link rel="alternate" href="http://www.cnblogs.com/slan/archive/2006/11/08/554157.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/archive/2006/11/08/554157.html"/></entry><entry><id>http://www.cnblogs.com/slan/archive/2006/11/08/554154.html</id><title type="text">C++中的I/O流的相关函数</title><summary type="text">一.输出文件流成员函数1.输出流的open函数要使用一个输出文件流(ofstream)，必须在构造函数或open函数中把该流与一个特定的磁盘文件关联起来。在各种情况下，描述文件的参量是相同的。当你打开一个与输出流关联．的文件时，通常指定一个open_mode标志，如下表所示。可以用按位OR(|)运算符组合这些标志，它们作为枚举器定义在ios类中。表输出文件流文件打开模式标志 功 　　　　　 能io...</summary><published>2006-11-08T06:22:00Z</published><updated>2006-11-08T06:22:00Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><link rel="alternate" href="http://www.cnblogs.com/slan/archive/2006/11/08/554154.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/archive/2006/11/08/554154.html"/></entry><entry><id>http://www.cnblogs.com/slan/archive/2006/11/08/554153.html</id><title type="text">类成员的初始化问题</title><summary type="text">1。调用默认构造函数例如，下面的程序定义了学号类和学生类，学生类中包含有学号类： 　　　　//***********************　　　　//**　　 ch12_10.cpp　 **　　　　//***********************　　　　＃i nclude &amp;lt;iostream.h&amp;gt;　　　　＃i nclude &amp;lt;string.h&amp;gt;　　　　int nextS...</summary><published>2006-11-08T06:21:00Z</published><updated>2006-11-08T06:21:00Z</updated><author><name>易来</name><uri>http://www.cnblogs.com/slan/</uri></author><link rel="alternate" href="http://www.cnblogs.com/slan/archive/2006/11/08/554153.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/slan/archive/2006/11/08/554153.html"/></entry></feed>
