Tagged Questions
The fully-qualified-naming tag has no wiki summary.
7
votes
7answers
265 views
Should I use (otherwise optimal) class names that conflict with the .NET BCL's names?
This situation probably is not entirely uncommon to some of you: you have some functionality to put in a class but the perfect name (*) for that class is taken by one of the classes in the System ...
3
votes
3answers
152 views
What's the meaning of “apostrophe + number” in the object type of properties with generics (eg. “Collection`1”)?
I have an object (MyObject) with a property (MyProperty). I want to get it's type name (i.e. String or MyClass etc.). I use:
PropertyInfo propInfo = typeof(MyObject).GetProperty("MyProperty");
...
3
votes
1answer
311 views
Fully qualified machine name Java with /etc/hosts
I am trying get the fully qualified name of my machine (Windows 7 x64) in Java. On my machine, I've updated the c:\Windows\system32\drivers\etc\hosts file such that it has an entry like this:
...
3
votes
2answers
127 views
How does the automatic full qualification of class names work, in Python? [relevant to object pickling]
(It is possible to directly jump to the question, further down, and to skip the introduction.)
There is a common difficulty with pickling Python objects from user-defined classes:
# This is program ...
3
votes
3answers
217 views
XML Comments - Should see references be fully qualified?
Basically, when is it truly necessary (if at all) to use a fully qualified xml see reference:
<see cref="T:MyNamespace.Sub.MyType"/> //Option 1
<see cref="T:MyType"> //Option 2
Also, ...
3
votes
2answers
545 views
regular expression matching fully qualified java classes
What is the best way to match fully qualified Java name.
Like java.lang.Reflect, java.util.ArrayList, org.hibernate.Hibernate
Thanks
3
votes
5answers
232 views
namespaces, classes and free functions - when do you need fully qualified names
In my example below, why do I have to fully qualify the name of the free function in the cpp to avoid linker errors and why does it work for the class function without? Can you explain the difference?
...
3
votes
4answers
151 views
Is fully qualified naming vs the using directive simply a matter of opinion?
I find now that I work in a mostly solo environment that I actually type fully qualified methods calls more and more, instead of make use of the using directive. Previously, I just stayed consistent ...
2
votes
2answers
522 views
Flex - new ClassFactory() vs Fully Qualified Name
When assigning the itemrenderer of an object it is better to use a fully qualified name string or use ClassFactory?
1
vote
2answers
218 views
forward declaration and typename using new keyword
I'm getting an error below in the class a declaring a new pointer of type b. Please help.
#include <iostream>
namespace B
{
class b;
}
class a
{
private:
B::b* obj_b;
public:
...
1
vote
2answers
279 views
How to get the fully qualified path name in C++
Is there a function that returns the fully qualified path name for any inputted file?
I'm thinking of something like:
LPCSTR path = "foo.bar"
LPCSTR fullPath = FullyQualifiedPath(path);
//fullPath ...
0
votes
4answers
125 views
Select from multiple tables with same condition, avoid ambiguity error
How can I do something like this but avoid the error column common_reference is ambiguous? I know it's ambiguous, I want to select from table_one all the results for common_reference there, and ...
0
votes
6answers
228 views
How to read the fully qualified name of a .class file
Hey, I think the title sums it, but still.
I need to extract the fully qualified name of an object from its compiled .class file, could anyone point me in the right direction?
Thanks,
Adam.
0
votes
2answers
337 views
Creating WebControls from fully qualified path (assembly name?)
I have a webpage in ASP.NET 3.5 that will be creating WebControls dynamically. The WebControls that it will be creating will be known by their fully qualified path (ie - ...