I am wondering why Qt uses Q before every class name rather than putting everything in a namespace. Is there any particular reason, such as making the names easy to search for, or is it just about brand names?
|
|
|||||||||||||
|
|
|
I believe it is historical. Namespaces were introduced into C++ around 1995. Qt development started in 1991 so namespaces could not be used, obviously. |
||
|
|
|
|
It may be a portability issue. Namespaces weren't / aren't supported by every compiler, so the naming convention helps to cut down on naming clashes. |
||
|
|
The documentation for Qt refers to namespaces, although I didn't check the code to see if they are truly c++
|
||
|
|
|
|
Qt is very conservative on the C++ language features it uses. No namespaces, exceptions or RTTI. See also this article detailing why templates are not used in signal/slot handling. |
||||
|
|
|
Seeing as there's not a single C++ compiler left that doesn't implement namespaces, nowadays there's only one reason: Branding :) |
||||||
|
|
|
Qt uses a Q prefix as part of their coding style. It usually serves the purpose of making it easier to read the code and spot what is what. An identifier that:
Adopting a coding style and using it uniformly makes it much easier for other people to understand code they didn't write. Ref.: Qt Coding Style |
||
|
|
