摘要: 下载网址: http://go.microsoft.com/?linkid=9656081 内容:PHP & SQL Server Demos Integrating SQL Server Geo-Spatial with PHP SQL Server Reporting Services and PHP PHP & SQL Server Hands On Labs Introduction to Using SQL Server with PHP Using Full Text Search over Office Documents in PHP PHP on Window 阅读全文
posted @ 2009-05-02 02:28 ajuanabc 阅读(118) 评论(0) 推荐(0)
摘要: C++中防止头文件被多次include 的常见方式有:1) 用#ifndef ... #define ... #endif 宏#ifndef __MYHEADER_H__#define __MYHEADER_H__// Here is my class ... #endif2) 用 #pragma once#pragma once// Here is my class ... 建议使用 #pragma once ,原因:1) 代码简洁,维护性比较好。 #pragma once 显然比 #ifndef ... 要简短许多,而且避免了__MYHEADER_H__ 重定义 或者 #endif 包含范 阅读全文
posted @ 2009-05-02 02:03 ajuanabc 阅读(186) 评论(0) 推荐(0)