C/C++整型轉字串的幾種方法

來源:互聯網
上載者:User

1,使用c語言函數

  將整形數value轉換為其等價的字串 
  char *itoa(int value, char *string, int radix) 


  Parameters(參數說明) 
  第一個參數:value        Number to be converted(將要被轉換的值) 
  第二個參數:string       String result(轉換的結果) 
  第三個參數:radix        Base of value; must be in the range 2 – 36(轉換的基數,取值範圍2-36。例如  radix=10表示10進位,radix=8表示8進位。) 
  傳回值:與string參數相同,便於函數的嵌套調用

  標頭檔 stdlib.h  

  舉例說明:

#include <stdlib.h>   #include <stdio.h>   int main()   {      int number = 123456;       char string[25];       itoa(number, string, 10);       printf("integer = %d string = %s\n", number, string);       return 0;   } 

2,  使用CString格式化字串

        函數原型:void  CString::Format( UINT nFormatID, [, argument]...);

        使用方法同printf

舉例說明:      

int num = 2; CString str;str.Format("a=%d",a);

3,使用sprintf格式化字元


    函數原型: int sprintf( char *buffer, const char *format [, argument] ... ); 

    舉例說明: 

char buffer[10];   int  num = 3;    sprintf(buffer,"size=%d",a);   



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.