<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_不明飞行物的blog</title><subtitle type="text">杂乱无章</subtitle><id>http://feed.cnblogs.com/blog/u/10311/rss</id><updated>2006-06-02T06:54:54Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/10311/rss"/><entry><id>http://www.cnblogs.com/ufoer23/archive/2006/06/02/415860.html</id><title type="text">磨刀不误砍柴工－打造超级Symbian开发环境</title><summary type="text">转载于：http://www.sf.org.cn/Article/lumen/200605/18518.html在开发Symbian C++程序的时候，一个很重要的环节就是选择和配置IDE，当前可供选择的IDE也比较多，例如Microsoft Visual C++ 6.0, CodeWarrior, Borland C++Builder X, Borland C++Builder 6.0, Mic...</summary><published>2006-06-02T06:55:00Z</published><updated>2006-06-02T06:55:00Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ufoer23/archive/2006/06/02/415860.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/archive/2006/06/02/415860.html"/></entry><entry><id>http://www.cnblogs.com/ufoer23/archive/2006/05/28/411330.html</id><title type="text">Symbian OS 开发初级手册 （8） 多线程</title><summary type="text">Symbian OS支持多线程， 但是用得很少， 因为官方建议尽可能使用Active Object代替。 我们将在下一课讲解Active Ojbect 和推荐使用它的原因。 Symbian OS支持多线程， 但是用得很少， 因为官方建议尽可能使用Active Object代替。 我们将在下一课讲解Active Ojbect 和推荐使用它的原因。 考虑对于普通的程序员来说多线程是一个要熟悉的多的概念...</summary><published>2006-05-28T07:41:00Z</published><updated>2006-05-28T07:41:00Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411330.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411330.html"/></entry><entry><id>http://www.cnblogs.com/ufoer23/archive/2006/05/28/411329.html</id><title type="text">Symbian OS 开发初级手册 （7） Descriptors</title><summary type="text">本文简介Descriptor。 Symbian OS 中不使用我们所熟悉的c 字符串(char*) 或者c++ 的string。 Symbian 的字符串是通过descriptor实现的。我们的第一个Symbian 程序，文字版Helloworld中是这样使用的： _LIT(KHelloWorldText,"Hello world!n");console-&amp;gt;Printf(KHelloWorl...</summary><published>2006-05-28T07:40:00Z</published><updated>2006-05-28T07:40:00Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411329.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411329.html"/></entry><entry><id>http://www.cnblogs.com/ufoer23/archive/2006/05/28/411328.html</id><title type="text">Symbian OS 开发初级手册 （6） CleanupStack and Two-phase</title><summary type="text">在创建实例的时候Symbian C++使用 new (ELeave) 来代替普通的 new , 比如：CBar *pBar = new (ELeave) CBar;这个用法是考虑到手机特殊的属性：内存一般较小， 经常会有内存不足的情况出现。 在pc上如果内存不足我们就会退出程序， 但是在手机不能那样频繁的退出， 所以内存不足被划分为异常， 需要离开. 下面这个函数就会在内存不足的时候在A行离开: ...</summary><published>2006-05-28T07:40:00Z</published><updated>2006-05-28T07:40:00Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411328.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411328.html"/></entry><entry><id>http://www.cnblogs.com/ufoer23/archive/2006/05/28/411327.html</id><title type="text">Symbian OS 开发初级手册 5 - Leave</title><summary type="text">leave (不知该怎么翻译，就先叫离开吧） 这个词我们在第二课提到过， 知道它是Symbain版本的异常处理。 这一课我们详细讲解它的意义和用法。 首先我们要明白为什么要离开? 当程序运行到一个地方无法正常继续的时候， 比如内存耗尽， 或者当前状态无法进行某个操作的时候我们不能简单的退出程序，或者忽略这些错误。 前者使得界面不够友好， 而后者可能导致不可估计的问题。 所以我们需要在这一点上离开。...</summary><published>2006-05-28T07:39:00Z</published><updated>2006-05-28T07:39:00Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411327.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411327.html"/></entry><entry><id>http://www.cnblogs.com/ufoer23/archive/2006/05/28/411326.html</id><title type="text">Symbian OS 开发初级手册 （4） mmp, pkg 文件 和 makesis 工具</title><summary type="text">这一课我们讲解mmp文件，pkg文件， 以及如何用makesis制作sis文件用来安装程序到手机上。开始之前，有必要提一下Symbian OS程序的目录规范， 你可以把所有头文件，原文件，mmp文件，资源文件等都放到一个目录下， 但是为了更有效的使用，一般把源文件放在/src下， 头文件放在/inc, bld.inf,mmp文件放在/group, sis, pkg文件放在/sis下。首先在grou...</summary><published>2006-05-28T07:39:00Z</published><updated>2006-05-28T07:39:00Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411326.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411326.html"/></entry><entry><id>http://www.cnblogs.com/ufoer23/archive/2006/05/28/411325.html</id><title type="text">Symbian OS 开发初级手册 （3）GUI程序中的4个基本类</title><summary type="text">图形界面的HelloWorld比文字版复杂了许多！ 做过windows图形和命令行程序的人们应该可以很容易的理解这一点。这个Helloworld一共有4个类， 他们是Symbian OS中任何图形程序都不可少的4个基本类。他们建立了图形界面程序的基本框架， 使得程序员们很容易就知道某些代码应该放在什么地方， 比如绘图的代码就应该放在View里边， 同样当我们去读一个程序的时候， 如果我们在意的是程...</summary><published>2006-05-28T07:38:00Z</published><updated>2006-05-28T07:38:00Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411325.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411325.html"/></entry><entry><id>http://www.cnblogs.com/ufoer23/archive/2006/05/28/411324.html</id><title type="text">Symbian OS 开发初级手册 （2）基本数据类型</title><summary type="text">Symbian OS 使用的是面向对象的C++， 但是又和标准的C++有一些区别。 比如Symbian OS没有标准的异常处理(Exception)， 因为设计Symbian OS的时候还C++还没有把异常处理标准化。 所以Symbian设计了自己得异常处理机制: TRAP, leave. 另外就是今天要讲的基本类型。 Symbian 基本上不使用任何标准的C++基本类型， 众所周知，不同的C++...</summary><published>2006-05-28T07:37:00Z</published><updated>2006-05-28T07:37:00Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411324.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411324.html"/></entry><entry><id>http://www.cnblogs.com/ufoer23/archive/2006/05/28/411323.html</id><title type="text">Symbian OS 开发初级手册 （1） Introduction</title><summary type="text">Symbian OS 开发初级手册 （1） IntroductionSymbian OS是当前应用最为广泛的smart phone操作系统。 Nokia,Panasonic,Siemens,Sony Ericsson的很多手机都是基于这个系统的。 可惜国内关于Symbian OS 开发的资料实在很少。 所以我打算根据自己的（浅薄）的经验写一套初级教程，让更多的人了解Symbian OS.说起Sym...</summary><published>2006-05-28T07:36:00Z</published><updated>2006-05-28T07:36:00Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411323.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/archive/2006/05/28/411323.html"/></entry><entry><id>http://www.cnblogs.com/ufoer23/archive/2006/04/06/368728.html</id><title type="text">利用JavaMail收/发Gmail邮件(SSL)</title><summary type="text">Gmail目前已经启用了POP3和SMTP服务，具体情况请看 http://www.javayou.com/showlog.jspe?log_id=490与其他邮箱不同的是Gmail提供的POP3和SMTP是使用安全套接字层SSL的，因此常规的JavaMail程序是无法收发邮件的，下面是使用JavaMail如何收取Gmail邮件以及发送邮件的代码：&amp;#160;1. 邮件收取package lius...</summary><published>2006-04-06T13:31:00Z</published><updated>2006-04-06T13:31:00Z</updated><author><name>不明飞行物</name><uri>http://www.cnblogs.com/ufoer23/</uri></author><link rel="alternate" href="http://www.cnblogs.com/ufoer23/archive/2006/04/06/368728.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/ufoer23/archive/2006/04/06/368728.html"/></entry></feed>
