devxlogo

Using Parameters to Report an Error During Object’s Construction

Using Parameters to Report an Error During Object’s Construction

Using global flags to indicate runtime errors has many disadvantages: Global variables are problematic in multithreaded environments. In addition, programmers might forget to test the value of the global error flag and consequently, the error is not properly handled.

Another method of reporting runtime errors during the construction of an object is to pass an additional argument to the constructor. The constructor assigns a value to that argument, which indicates success or failure.

 Date::Date(const char *datestr, int& status){  if (isValid(datestr) == flase)    status = EINVALIDDATE;//

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
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