IOS中的輸出格式符匯總

來源:互聯網
上載者:User

/****
%u表示無符號類型
int 輸出格式符:%i, %d, %o %x
float 輸出格式符:%f, %e, %g
double 輸出格式符:%f, %e, %g
char 輸出格式符:%c
long 輸出格式符:%l
long int 輸出格式符: %li
long double 輸出格式符: %Lf
long long 輸出格式符:long long int: %lli
short 輸出格式符:short int: %hi
**/

#import <Foundation/Foundation.h>

int int main(int argc, char const *argv[])
{
int year =2013;
NSLog(@"今年是 %d 年\n",year);
NSLog(@"argc=%d\n",argc);

int i=100;
float f=1.1;
double d=2.2;
short int si=200;
long long int ll=12342342434234234213421L;
char c='c';
bool b=true;
BOOL bl=true;

NSLog(@"i=%d size=%u byte",i,sizeof(i));
NSLog(@"f=%f size=%u byte",f,sizeof(f));
NSLog(@"d=%e size=%u byte",d,sizeof(d));
NSLog(@"si=%d size=%u byte",si,sizeof(si));
NSLog(@"ll=%lli size=%u byte",ll,sizeof(ll));
NSLog(@"c=%c size=%u byte",c,sizeof(c));
NSLog(@"b=%d size=%u byte",b,sizeof(b));

NSLog(@"i=%d size=%u byte",i,sizeof(i));

return 0;
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.