摘要:windowns 2k下快速配置jsp服务器+tomcat篇tomcat的的下载地址http://www.apache.org/dist/jakarta/tomcat-4/1、安装jdk,详细操作请参考本站windows 2k和redhat 8.0下java环境配置2、如何修改端口号 使用文本编辑器如editplus,打开server.xml文件,查找到 <!-- define a non-......
摘要:when you save a file with tqrprinter.save, the resulting file is a .qrp file which can only be opened in a quickreport preview screen. you can export to other file formats though, using a tqrexportfil......
“big-endian”和“little-endian”的三种参考处理方式 // =============================================
// class for 16 bit numbers.
// =============================================
template <class t>
class cbe16
{
typedef union
{
t i;
struct
{
char a,b;
} c;
} union16;
char a,b;
public:
// sets "big-endian" value.
void operator ()(t nvalue)
{
union16 u16;
u16.i = nvalue;
a = u16.c.b;
b = u16.c.a;
}
// returns "little-endian" value.
t operator ()()
{
union16 u16;
u16.c.b = a;
u16.c.a = b;
return u16.i;
}
};
typedef cbe16<short> cbeshort;
typedef cbe16<unsigned short> cbeushort;
// =============================================
// class for 32 bit numbers.
// =============================================
template <class t>
class cbe32
{
typedef union
{
...
下一页 摘要:许多人问我,为什么你会开发tcad呢?谁给你的点子呢? 一说起这个问题,往往会让我想起许多在计算机面前的经历,有欢乐也有悲伤,有成功也有失败. tcad的开发正是来自于我以前开发的软件的失败!也就是说我根本不是为了开发tcad而开发的,而是开发另一个软件中,需要矢量绘图的功能.正是因为我在矢量绘图的功能上花的时间太多而导致那项目彻底的失败. 由于项目的失败,而且经常加夜班,透支生命,再加上一边......