1. 程式人生 > >在Debug模式下中斷, 在Release模式下跳出當前函數的斷言

在Debug模式下中斷, 在Release模式下跳出當前函數的斷言

clas for spa sso asm ack func comm return

在Debug模式下中斷, 在Release模式下跳出當前函數的斷言

#ifdef DEBUG
#define __breakPoint_on_debug asm("int3")
#else
#define __breakPoint_on_debug
#endif

// 驗證
#define UXY_ASSERT_RETURN_ON_RELEASE( __condition, __desc, ... ) \
        metamacro_if_eq(0, metamacro_argcount(__VA_ARGS__))         (__XY_ASSERT_1(__condition, __desc, __VA_ARGS__))            (__XY_ASSERT_2(__condition, __desc, __VA_ARGS__))

#define
__XY_ASSERT_1( __condition, __desc ) \
if ( !(__condition) ) __breakPoint_on_debug; else return; #define __XY_ASSERT_2( __condition, __desc, __returnedValue ) \ if ( !(__condition) ) __breakPoint_on_debug; else return __returnedValue;
‘).addClass(‘pre-numbering‘).hide(); $(this).addClass(‘has-numbering‘).parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($(‘
  • ‘).text(i)); }; $numbering.fadeIn(1700); }); });

    在Debug模式下中斷, 在Release模式下跳出當前函數的斷言