Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between the ASSERT and VERIFY macros?

Answers were Sorted based on User's Feedback



What is the difference between the ASSERT and VERIFY macros?..

Answer / muthukumar. j

Both ASSERT and VERIFY macros behave in the same Manner in
debug Version.

But in Release version the Expression in the ASSERT is
ignored. And in Release version the Expression in the
VERIFY is evaluated. But not verified. Means the expression
is evaluated. And like dubug it is NOT stop the execution
if the expression evaluated to FALSE.

Is This Answer Correct ?    16 Yes 0 No

What is the difference between the ASSERT and VERIFY macros?..

Answer / ctharam

ASSERT:-
--------
This function is available only in the Debug version of MFC.

Ctharam* tharamage = new Ctharam(21); //Ctharam is derived from CObject.
ASSERT(tharamage != NULL);
ASSERT(tharamage ->IsKindOf(RUNTIME_CLASS(Ctharam)));
// Terminates program only if tharamage is NOT a Ctharam*.


VERIFY:-
-------
1)
In the Debug version of MFC, evaluates its argument.

ex:- VERIFY(booleanExpression )

2)

In the Release version of MFC, VERIFY evaluates the expression

Ex:-
// get the display device context
HDC hdc;
VERIFY((hdc = ::GetDC(hwnd)) != NULL);

// give the display context back
::ReleaseDC(hwnd, hdc);

Is This Answer Correct ?    1 Yes 0 No

What is the difference between the ASSERT and VERIFY macros?..

Answer / satyabrata mishra

ASSERT() macro works in the Debug builds
VERIFY() macro works in Release builds.

Is This Answer Correct ?    2 Yes 10 No

What is the difference between the ASSERT and VERIFY macros?..

Answer / manoj

ASSERT for Debug.
Verify for Release

Is This Answer Correct ?    1 Yes 10 No

Post New Answer

More MFC Interview Questions

If there is more than 100 control in a window how we can change the Taborder of a controls

4 Answers   Satyam,


Why not virtual functions to handle messages?

5 Answers  


1)how to Display the File Dialog Box, in MFC ?

1 Answers  


What is the difference between ASSERT and VERIFY?

2 Answers  


What is CSingleDocTemplate?

1 Answers  


How can i change the color of a dropdowncombobox elements

2 Answers  


What is thread & process?

15 Answers   Exaband,


How to update windows title bar dynamically?

7 Answers   HCL,


In MFC By Using Communication Between Dialog Boxes,How Can We Send Message Of one Dialog Box To Another Dialog.?

3 Answers   Financial Technologies,


How to setup a timer?

3 Answers   IBM,


if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?

2 Answers   Patni,


What is the difference between workrer thread and UI thread

3 Answers   HCL,


Categories