devxlogo

Static Char THIS_FILE[]=__FILE__

Static Char THIS_FILE[]=__FILE__

Question:
When I learned VC++, I found a bizarre statement inevery .cpp produced by AppWizard:

"static char THIS_FILE[]=__FILE__;"

Why does AppWizard redefine THIS_FILE?I find that THIS_FILE is just defined as__FILE__ in AFX.h. Any idea why it’s this way?

Answer:
The THIS_FILE variable stores the name of the current translation unit. It is displayed when the application crashes due to an Assert() failure or an Access Violation. Note that the THIS_FILE declaration is deprecated for two reasons:

1. It uses the keyword ‘static’ to force internal linkage, whereas an anonymous namespace is the recommended way of doing this.
2. The char array should be declared const. After all, it’s not supposed to be changed after the initialization.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist