bail:
if ( err && image ) {
CGImageRelease( image );
image = NULL;
}
if ( provider ) CGDataProviderRelease( provider );
if ( colorspace ) CGColorSpaceRelease( colorspace );
*imageOut = image;
return err;
上述代碼的 bail: 部分是什麼意思,咋沒見過這種代碼風格?
代碼源自ios example SquareCam(http://developer.apple.com/library/ios/#samplecode/SquareCam/Introduction/Intro.html)
這是goto
語句跳轉的標簽。
你正在看的代碼:SquareCamViewController.m
。使用了一個宏命名require
,像這樣:
require( error == nil, bail );
這個宏是在AssertMacros.h
頭文件中定義。他將標簽作為第二參數,如果第一參數的值為false使用goto
。
在C中,使用goto和標簽來跳轉清除函數結尾的代碼是最常用的方法。