网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > C/C++
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
网络编程:ASP教程,ASP.NET教程,PHP教程,JSP教程,C#教程,数据库,XML教程,Ajax,Java,Perl,Shell,VB教程,Delphi,C/C++教程,软件工程,J2EE/J2ME,移动开发
本月文章推荐
.为VC++应用程序对话框添加透明位.
.初学者入门:C++指针使用方法.
.实例解析C++/CLI之值类型.
.C语言入门之枚举与位运算(1).
.C语言库函数(I类字母).
.《c语言程序设计》第八章:枚举,位.
.制作固定大小的Form.
.corba核心规范.
.认识宏,C语言的万恶之首.
.C++之静态联编和动态联编.
.BCB中用Sender参数实现代码重用(.
.水滴石穿C语言之extern声明辨析.
.C语言库函数(M类字母).
.C++知识点.
.C/C++指针应用.
.在CB环境中实现在菜单中显示历史.
.Linux 下 C++程序的异常处理技巧.
.C++类对象的拷贝构造函数分析.
.[收藏]ASP.Net生成静态HTML页 .
.用Win32 API枚举应用程序窗.

Creating Reusable Software Libraries

发表日期:2008-3-8



  By Rob Tougher

-----------------------------------------------------------------------

1. IntrodUCtion
2. Making It Easy To Use
2.1 Keeping It Simple
2.2 Being Consistent
2.3 Making It Intuitive
3. Testing Thoroughly
4. Providing Detailed Error Information
5. Conclusion
1. Introduction
Software libraries provide functionality to application developers. They consist of reusable code that developers can utilize in their projects. Software libraries targeted for Linux are usually available in both binary and source code form.

A well-written software library:

is easy to use
works flawlessly
provides detailed error information
This article describes the above principles of library creation, and gives examples in C++.

Is This Article For You?
Create software libraries only when you have to. Ask yourself these questions before proceeding:

Will anyone (including you) need functionality X in future applications?
If so, does a library implementing functionality X already exist?
If no one will need the functionality you are developing, or a software library implementing it already exists, don't create a new library.


2. Making It Easy To Use
The first step in creating a software library is designing its interface. Interfaces written in procedural languages, like C, contain functions. Interfaces written in object-oriented languages, like C++ and Python, can contain both functions and classes.

Remember this motto when designing your interface:

The easier to use, the better
As a library designer, I am constantly faced with finding the right balance between functionality and ease of use. The above motto helps me resist adding too much functionality into my designs.

Stick with the following guidelines, and you'll be fine.

2.1 Keeping It Simple
The more complex a library, the harder it is to use.

Keep It Simple, Stupid
I recently encountered a C++ library that consisted of one class. This class contained 150 methods. 150 methods! The designer was most likely a C veteran using C++ - the class acted like a C module. Because this class was so complex, it was very difficult to learn.

Avoid complexity in your designs, and your interfaces will be cleaner and easier to understand.


2.2 Being Consistent
Users learn consistent interfaces more easily. After learning the rules once, they feel confident in applying those rules across all classes and methods, even if they haven't used those classes and methods before.

One example I am guilty of involves public Accessors for private variables. I sometimes do the following:

class point
{
public:
int get_x() { return m_x; }
int set_x ( int x ) { m_x = x; }

int y() { return m_y; }

private:
int m_x, m_y;
};

Do you see the problem here? For the m_x member, the public accessor is "get_x()", but for the m_y member, the public accessor is "y()". This inconsistency generates more work for the users - they have to look up the definition of each accessor before using it.

Here's another example of an inconsistent interface:

class DataBase
{
public:

recordset get_recordset ( const std::string sql );
void RunSQLQuery ( std::string query, std::string connection );

std::string connectionString() { return m_connection_string; }

long m_sError;

private:

std::string m_connection_string;
};

Can you spot its problems? I can think of at least these items:

Methods and variables are not named consistently
Two different terms, sql and query, are used to denote a SQL string
m_sError does not have a public accessor
get_recordset() does not have a connection in its argument list
Here is a revised version that solves these problems:

class database
{
public:

recordset get_recordset ( const std::string sql );
void run_sql_query ( std::string sql );

std::string connection_string() { return m_connection_string; }
long error() { return m_error; }

private:

std::string m_connection_string;
long m_error;
};

Keep your interfaces as consistent as possible - your users will find them much easier to learn.

2.3 Making It Intuitive
Design an interface how you would eXPect it to work from a user's point of view - don't design it with the internal implementation in mind.

I find that the easiest way to design an intuitive interface is to write code that will use the library before actually writing the library. This forces me to think about the library from the user's standpoint.


Let's look at an example. I was recently considering writing an encryption library based on OpenSSL. Before thinking about the library design, I wrote some code snippets:

crypto::message msg ( "My data" );
crypto::key k ( "my key" );

// blowfish algorithm
msg.encrypt ( k, crypto::blowfish );
msg.decrypt ( k, crypto::blowfish ):

// rijndael algorithm
msg.encrypt ( k, crypto::rijndael );
msg.decrypt ( k, crypto::rijndael ):

This code helped me think about how I should design the interface - it put me in the user's shoes. If I decide to implement this library, my design will flow from these initial ideas.

3. Testing Thoroughly
A software library should work flawlessly. Well not flawlessly, but as close to flawless as possible. Users of a library need to know that the library is performing its tasks correctly.

Why use a software library if it doesn't work correctly?
I test my software libraries using automated scripts. For each library, I create a corresponding application that exercises all features of the library.

For example, say I decided to develop the encryption library I introduced in the previous section. My test application would look like the following:

#include "crypto.hpp"

int main ( int argc, int argv[] )
{
//
// 1. Encrypt, decrypt, and check
// message data.
//
crypto::message msg ( "Hello there" );
crypto::key k ( "my key" );

msg.encrypt ( k, crypto::blowfish );
msg.decrypt ( k, crypto::blowfish );

if ( msg.data() != "Hello there" )
{
// Error!
}

//
// 2. Encrypt with one algorithm,
// decrypt with another, and check
// message data.
//

// etc....
}

I would occasionally run this application to make sure that my software library did not have any major errors.

4. Providing Detailed Error Information
Users need to know when a software library cannot perform its tasks correctly.

Alert the user when there is a problem
Software libraries written in C++ use exceptions to pass information to its users. Consider the following example:

#include <string>
#include <io
上一篇:C程序开发经典实例之1 人气:479
下一篇:DOS界面下通用图形编辑软件的设计 人气:757
浏览全部C/C++的内容 Dreamweaver插件下载 网页广告代码 祝你圣诞节快乐 2009年新年快乐