I am reading RAD Studio Documentaion in Delphi XE. here a some texts.

[ Delphi Reference -> Delphi Language Guide -> Programs and Units -> Using Namespaces -> Searching Namespaces -> Multi-unit Namespaces ]

Multi-unit Namespaces

Multiple units can belong to the same namespace, if the unit declarations refer to the same namespace. For example, one can create two files, unit1.pas and unit2.pas, with the following unit declarations:

// in file 'unit1.pas' 
unit MyCompany.ProjectX.ProgramY.Unit1 

// in file 'unit2.pas' 
unit MyCompany.ProjectX.ProgramY.Unit2 

In this example, the namespace MyCompany.ProjectX.ProgramY logically contains all of the interface symbols from unit1.pas and unit2.pas.

Symbol names in a namespace must be unique, across all units in the namespace.
In the example above, it is an error for Unit1 and Unit2 to both define a global interface symbol named mySymbol

I tested this. code below .

----------------------------------------------------------------- 
program Project1; 

{$APPTYPE CONSOLE} 

uses 
  SysUtils, 
  Lib.A in 'Lib.A.pas', 
  Lib.B in 'Lib.B.pas'; 

begin 
  WriteLn ( TestValue ) ; 
  ReadLn ; 
end. 
----------------------------------------------------------------- 
unit Lib.A; 

interface 
  const TestValue : Integer = 10 ; 
implementation 

end. 
----------------------------------------------------------------- 
unit Lib.B; 

interface 
  const TestValue : Integer = 10 ; 
implementation 

end. 

This is not error. Why? I don't understand.

link|improve this question
What happens if you only uses SysUtils, Lib in Project1 and do TestValue: Integer = 20 in Lib.B and then do WriteLn(TestValue) in Project1? – Andreas Rejbrand May 15 '11 at 15:29
I suppose Codegear had some irregular plans on extending .Net concept of namespaces on Delphi for Win32 which have never been implemented. Where are just no multi-unit namespaces in Delphi, and it is hard to say what the above documentation is about. – Serg May 15 '11 at 17:11
feedback

2 Answers

Your code does not match the documentation. Documentation explicitly states that file name of 'unit MyCompany.ProjectX.ProgramY.Unit1' is unit1.pas, not MyCompany.ProjectX.ProgramY.Unit1.

I do not believe, however, that this feature is implemented at all. If I change your code to store first unit in file a.pas and second unit in file b.pas, units don't compile at all and the error is

[DCC Error] A.pas(1): E1038 Unit identifier 'Lib.A' does not match file name

(Which is exactly as I was expecting to see.)

In your case there's no conflict because you can always use a full name of 'conflicting' global - Lib.A.TestValue and Lib.B.TestValue.

link|improve this answer
I also got the same error, but I am using Delphi 2009. Maybe this is new to XE (or 2010). – Andreas Rejbrand May 15 '11 at 15:25
I tested in XE. – gabr May 15 '11 at 15:28
1  
Just verifying: you are using Delphi XE? Asking because usually the documentation is lagging behind the features and not the other way around? From your answer to Andreas, I see you did. Interesting. – Marjan Venema May 15 '11 at 15:29
When was this 'multi-unit namespace' feature introduced? It seems not to be there in Delphi 2009, so it has to be 2010 or XE. (Even though in 2009 there are units like Generics.Collections etc.) – Andreas Rejbrand May 15 '11 at 15:31
1  
It will compile if you explicitly define 'Lib' as the default namespace in the project options. – Kenneth Cochran Jan 31 at 17:43
show 4 more comments
feedback

In Delphi.NET (before Prism): unit name = namespace. That's the way they used it in that time - and in dotNET an unit was really an namespace (inclusive appear as such in generated IL).

In native Delphi, I don't see the difference (if that exists at all).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.