WEB开发网      婵犻潧鍊婚弲顐︽偟椤栨稓闄勯柦妯侯槸閻庤霉濠婂骸浜剧紒杈ㄥ笚閹峰懘鎮╅崹顐ゆ殸婵炴垶鎸撮崑鎾趁归悩鐑橆棄闁搞劌瀛╃粋宥夘敃閿濆柊锕傛煙鐎涙ê鐏f繝濠冨灴閹啴宕熼鍡╀紘婵炲濮惧Λ鍕叏閳哄懎绀夋繛鎴濈-楠炪垽鎮归崶褍妲婚柛銊ュ缁傚秹鏁撻敓锟� ---闂佹寧娲╅幏锟�
开发学院软件开发Delphi Delphi2005学习笔记4——再谈NameSpace和Dll以及P... 阅读

Delphi2005学习笔记4——再谈NameSpace和Dll以及Package

 2006-02-04 13:56:50 来源:WEB开发网 闂侀潧妫撮幏锟�闂佸憡鍨电换鎰版儍椤掑倵鍋撳☉娆嶄沪缂傚稄鎷�婵犫拃鍛粶闁靛洤娲ㄩ埀顒佺⊕閵囩偟绱為敓锟�闂侀潧妫撮幏锟�  闂佺ǹ绻楀▍鏇㈠极閻愬搫绾ч柕濠忕細閼割亜顪冪€n剙浠ф繛鍫熷灥椤曘儵顢欓悡搴ば�
核心提示:今天在BDN中看到一篇文章http://bdn.borland.com/article/0,1410,32765,00.html重要的部分摘抄如下Executive Summary• Namespaces do not affect Delphi for Win32.• Namespaces
今天在BDN中看到一篇文章
http://bdn.borland.com/article/0,1410,32765,00.html

重要的部分摘抄如下

Executive Summary

•      Namespaces do not affect Delphi for Win32.

•      Namespaces are PRoduced based on the unit name as follows:

      If a unit name is dotted then the unit name up to the last dot is used.

      If it is not dotted then the default namespace is used.

      If there is no default namespace then the unit name is used.

•      Code converted from Delphi 8 may require some modifications.

•      Always use Packages not Libraries to create shareable assemblies.

•      Delphi will always refer to types by their full unit name.

•      Other languages will need to refer to types using their namespace.

•      asp.net declarations, configuration files and .NET reflection always refer to types by their namespace.

•      If multiple units emit a public type with the same name into the same namespace, the assembly may be unusable

1)   Always Use Packages

Borland has always recommended not using library projects to create assemblies. In Delphi 2005, the compiler is stricter and will no longer allow you to compile an application referencing a Delphi ‘library’.
Always use a package project to create .NET assemblies.

However, as with anything, there are exceptions to the rule and there are several situations where you need to use the namespace even though you are coding in Delphi.

 

One example is when you are using tags in ASPX, ASCX or ASMX files. If you create a web page called TWebForm in the file Application.­Pages.­WebForm1.­­pas then the page tag would be:

 

<%@Page Language="c#" Codebehind="WebForm1.pas" Inherits="Application.Pages.TWebForm1"%>

 

Another is when passing type information to .NET in the form of strings, especially when using reflection based APIs and configuration files:

 

var c:TypeConverter;

c:=Assembly.CreateInstance('Sample.Controls.TConverter');

 

This slight difference commonly trips people up and is something you need to be careful of, especially when porting code from Delphi 8 or converting code from other languages.

这就解释了我原来的疑问,在D2005中,新建一个.Net Dll,编译,在别的编译器中(C#),可以使用,但是在Delphi中自己却不能用,虽然用薄可以解决问题,但是包中添加资源很不方便,真是不知道Borland是怎么想的。


Tags:Delphi 学习 笔记

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接