C++ Programmer's Cookbook

{C++ 基础} {C++ 高级} {C#界面,C++核心算法} {设计模式} {C#基础}

11 2005 档案

C++ Style and Technique FAQ (中文版)-------

posted @ 2005-11-30 11:58 梦在天涯 阅读(3581) | 评论 (2)  编辑

微软各种语言比较

posted @ 2005-11-29 16:31 梦在天涯 阅读(1200) | 评论 (0)  编辑

ASP.NET程序中常用的三十三种代码(强荐)! by Mark_Lee

posted @ 2005-11-28 18:25 梦在天涯 阅读(964) | 评论 (0)  编辑

ADO.NET 之XML与DataSet(八)

posted @ 2005-11-24 13:25 梦在天涯 阅读(521) | 评论 (0)  编辑

Obtain an XML Document from a SQL Server Query(AOD.NET 七)

posted @ 2005-11-24 13:10 梦在天涯 阅读(404) | 评论 (0)  编辑

ADO。NET之dataview(六)

posted @ 2005-11-24 12:23 梦在天涯 阅读(1150) | 评论 (0)  编辑

ADO>NET之datatable(五)

posted @ 2005-11-24 12:06 梦在天涯 阅读(1674) | 评论 (0)  编辑

Ado.net各种provider的连接直接读取,填充dataset示例(四)

posted @ 2005-11-24 10:33 梦在天涯 阅读(1328) | 评论 (0)  编辑

ADO。NET 之DataSet (三)

posted @ 2005-11-24 10:29 梦在天涯 阅读(813) | 评论 (0)  编辑

C#.NET常用的小函数和方法集- -

posted @ 2005-11-24 09:25 梦在天涯 阅读(526) | 评论 (0)  编辑

个人整理-C#编程实用小技巧- -

posted @ 2005-11-24 09:19 梦在天涯 阅读(2789) | 评论 (4)  编辑

ADO.NET简介- -(一)

posted @ 2005-11-24 09:17 梦在天涯 阅读(2213) | 评论 (0)  编辑

用Ado.NET连接Access和SQL Server数据库 (二)
     摘要: 用ASP.NET/C#连接Access和SQL Server数据库   阅读全文

posted @ 2005-11-23 19:16 梦在天涯 阅读(3664) | 评论 (0)  编辑

Perform an XSL Transform(XML五)
     摘要: Perform an XSL Transform  阅读全文

posted @ 2005-11-23 18:50 梦在天涯 阅读(590) | 评论 (0)  编辑

Use XML Serialization with Custom Objects/Create a Schema for a .NET Class/Generate a Class from a Schema(XML 四)
     摘要: Use XML Serialization with Custom Objects/Create a Schema for a .NET Class/Generate a Class from a Schema  阅读全文

posted @ 2005-11-23 18:40 梦在天涯 阅读(865) | 评论 (0)  编辑

Validate an XML Document Against a Schema(XML 三)
     摘要: Validate an XML Document Against a Schema  阅读全文

posted @ 2005-11-23 18:26 梦在天涯 阅读(922) | 评论 (0)  编辑

find the nodes in XML in 3 means(XML 二)
     摘要: find the nodes in XML in 3 means  阅读全文

posted @ 2005-11-23 18:13 梦在天涯 阅读(558) | 评论 (0)  编辑

read and write XMl in 2 means (XML一)
     摘要: read and write XMl in 2 means in c#  阅读全文

posted @ 2005-11-23 18:09 梦在天涯 阅读(728) | 评论 (0)  编辑

Accessing Files and Directories

posted @ 2005-11-23 12:24 梦在天涯 阅读(556) | 评论 (0)  编辑

Writing XML File using XmlWriter//Reading XML Files//Reading XML File using XmlDocument//Inserting Data to an XML Document

posted @ 2005-11-22 17:54 梦在天涯 阅读(1755) | 评论 (0)  编辑

destructor/unsafe(c#)

posted @ 2005-11-21 17:44 梦在天涯 阅读(865) | 评论 (0)  编辑

从c++到c#
     摘要: 从c++到c#  阅读全文

posted @ 2005-11-21 16:59 梦在天涯 阅读(2100) | 评论 (1)  编辑

Simple ADO Database Read, Insert, Update and Delete using C#.
     摘要: Introduction
Accessing databases is a common part of most applications and with the introduction of C# and ADO.NET, has become quite simple. This article will demonstrate the four most basic database operations.

Reading data. This includes various data types such as integers, strings and dates.
Writing data. As with reading we will write these common types. This will be done using a SQL statement.
Updating or modifying data. Again we will use a simple SQL statement. 阅读全文

posted @ 2005-11-21 12:20 梦在天涯 阅读(1301) | 评论 (1)  编辑

Managed, Unmanaged, Native: What Kind of Code Is This?(转)
     摘要: Managed, Unmanaged, Native: What Kind of Code Is This?  阅读全文

posted @ 2005-11-21 10:47 梦在天涯 阅读(2133) | 评论 (11)  编辑

泛型编程 ,知多少?
     摘要: 归纳起来,泛型比非泛型具有下面两个优点:

1、 更加安全

在非泛型编程中,虽然所有的东西都可以作为Object传递,但是在传递的过程中免不了要进行类型转换。而类型转换在运行时是不安全的。使用泛型编程将可以减少不必要的类型转换,从而提高安全性。

2、 效率更高

在非泛型编程中,将简单类型作为Object传递时会引起Boxing和Unboxing操作,这两个过程都是具有很大开销的。使用泛型编程就不必进行Boxing和Unboxing操作了。



.NET泛型具有很好的二进制重用性。这一点得益于.NET将泛型内建在CLR之中。C++泛型和评估中Java泛型所依靠的是它们各自的编译器所提供的特性,编译器在编译泛型代码时将确切的类型展开,这就难免会出现代码膨胀的问题。而.NET的泛型代码是在运行时由JIT即时编译的,这样CLR就可以为不同类型重用大部分的即时编译代码了。  阅读全文

posted @ 2005-11-18 13:51 梦在天涯 阅读(3515) | 评论 (0)  编辑

解析.Net框架下的XML编程技术(转)

posted @ 2005-11-18 13:37 梦在天涯 阅读(454) | 评论 (0)  编辑

关于 “托管与非托管 ” 大家都知道那些,来说说?

posted @ 2005-11-18 13:36 梦在天涯 阅读(1682) | 评论 (1)  编辑

Namespaces/Identifiers
     摘要: Namespaces/Identifiers   阅读全文

posted @ 2005-11-18 12:49 梦在天涯 阅读(403) | 评论 (0)  编辑

Interacting with COM Components Using C#
     摘要: In this article, we will analyze COM components and their application in C#. These components became popular among developers after Microsoft released Active Server Pages. However, the whole scenario changed when Microsoft released its Windows 2000 operating system and subsequent COM+ technology. In this article, we will examine the fundamentals of this exiting technology followed by its application in C#.

  阅读全文

posted @ 2005-11-18 12:30 梦在天涯 阅读(674) | 评论 (0)  编辑

Exception Handling in C#
     摘要: Exception Handling in C#  阅读全文

posted @ 2005-11-18 12:03 梦在天涯 阅读(693) | 评论 (0)  编辑

Properties/Access Modifiers/Enumerations/Interfaces(c#)
     摘要: Properties/Access Modifiers/Enumerations/Interfaces(c#)  阅读全文

posted @ 2005-11-17 17:10 梦在天涯 阅读(552) | 评论 (0)  编辑

The future of WTL

posted @ 2005-11-16 16:00 梦在天涯 阅读(818) | 评论 (0)  编辑

c++资源

posted @ 2005-11-16 10:16 梦在天涯 阅读(2663) | 评论 (0)  编辑

Introducing Microsoft .NET(转)
     摘要: Introducing Microsoft .NET  阅读全文

posted @ 2005-11-15 16:57 梦在天涯 阅读(628) | 评论 (0)  编辑

Event Handling in C#(转)
     摘要: Event Handling in C#  阅读全文

posted @ 2005-11-15 16:37 梦在天涯 阅读(934) | 评论 (0)  编辑

Working with Files in C#(转)
     摘要: .net的io  阅读全文

posted @ 2005-11-15 12:47 梦在天涯 阅读(547) | 评论 (0)  编辑

c# 简介(转)
     摘要: C# (C sharp) 是微软对这一问题的解决方案。C#是一种最新的、面向对象的编程语言。它使得程序员可以快速地编写各种基于Microsoft .NET平台的应用程序,Microsoft .NET提供了一系列的工具和服务来最大程度地开发利用计算与通讯领域。
  阅读全文

posted @ 2005-11-15 10:38 梦在天涯 阅读(589) | 评论 (0)  编辑

c#与java(转)
     摘要: http://www.cppblog.com/mzty/archive/2005/11/10/1045.html  阅读全文

posted @ 2005-11-10 16:15 梦在天涯 阅读(2097) | 评论 (0)  编辑

读写文件精华
     摘要: 读写文件精华 ,各种方法!  阅读全文

posted @ 2005-11-09 13:05 梦在天涯 阅读(4844) | 评论 (4)  编辑

内存。二重指针,指针的高级使用
     摘要: 内存  阅读全文

posted @ 2005-11-09 13:04 梦在天涯 阅读(2281) | 评论 (1)  编辑

不完整得cstring类

posted @ 2005-11-09 13:03 梦在天涯 阅读(629) | 评论 (0)  编辑

函数指针
     摘要: 函数指针参考  阅读全文

posted @ 2005-11-09 13:03 梦在天涯 阅读(1192) | 评论 (1)  编辑

const
     摘要: const关键字的用法  阅读全文

posted @ 2005-11-09 13:02 梦在天涯 阅读(1638) | 评论 (0)  编辑

C++ casting
     摘要: c++的安全转换类型  阅读全文

posted @ 2005-11-09 13:02 梦在天涯 阅读(1886) | 评论 (2)  编辑

虚函数 多重继承的构造函数的调用,虚函数地址的找法
     摘要: 虚函数的种种实例  阅读全文

posted @ 2005-11-09 12:58 梦在天涯 阅读(1669) | 评论 (0)  编辑

c++ effective心得

posted @ 2005-11-09 12:56 梦在天涯 阅读(1800) | 评论 (2)  编辑

重载覆盖隐藏 -------多重继承的成员调用

posted @ 2005-11-09 12:51 梦在天涯 阅读(1543) | 评论 (0)  编辑

Eric Raymond对于几大开发语言的评价(转)--c/c++/java/Python

posted @ 2005-11-09 12:37 梦在天涯 阅读(712) | 评论 (0)  编辑

auto_ptr(转)

posted @ 2005-11-09 12:34 梦在天涯 阅读(1650) | 评论 (0)  编辑

有用但不常见的c++函数

posted @ 2005-11-04 14:55 梦在天涯 阅读(1906) | 评论 (2)  编辑

简单友元实例和访问申明using关键字

posted @ 2005-11-04 11:57 梦在天涯 阅读(2512) | 评论 (1)  编辑

公告

EMail:itech001#126.com

导航

统计

  • 随笔 - 461
  • 文章 - 4
  • 评论 - 746
  • 引用 - 0

常用链接

随笔分类

随笔档案

收藏夹

Blogs

c#(csharp)

C++(cpp)

Enlish

Forums(bbs)

My self

Often go

Useful Webs

Xml/Uml/html

搜索

  •  

积分与排名

  • 积分 - 1785199
  • 排名 - 5

最新评论

阅读排行榜