【C++ Primer】int 轉 string

來源:互聯網
上載者:User

一、使用atoi
        說明:
              itoa( int value, char *string, int radix );
              第一個參數:你要轉化的int;
              第二個參數:轉化後的char*;
              第三個參數:你要轉化的進位;

舉例:

#include <iostream>using namespace std;int main(int argc, char* argv[]){int n = 30;char c[10];itoa(n, c, 2);cout << "2-> " << c << endl;itoa(n, c, 10);cout << "10-> " << c << endl;itoa(n, c, 16);cout << "16-> " << c << endl;system("pause");return 0;}

輸出:

2-> 11110
10-> 30
16-> 1e

 

二、使用sprintf
       標頭檔 #include<stdio.h>

       文法: int sprintf( char *buffer, const char *format, [ argument] … ) ;      

       傳回值:字串長度(strlen)

       轉換字元

     =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

      % 印出百分比符號,不轉換。

      b 整數轉成二進位。

      c 整數轉成對應的 ASCII 字元。

      d 整數轉成十進位。

      f 倍精確度數字轉成浮點數。

      o 整數轉成八進位。

      s 整數轉成字串。

      x 整數轉成小寫十六進位。

      X 整數轉成大寫十六進位。

     =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
舉例:

#include <iostream>#include <string>using namespace std;int main(){int n = 30;char c[20];sprintf(c, "%d", n);cout << c << endl;sprintf(c, "%o", n);cout << c << endl;sprintf(c, "%X", n);cout << c << endl;sprintf(c, "%c", n);cout << c << endl;float f = 24.678;sprintf(c, "%f", f);cout << c << endl;sprintf(c, "%.2f", f);cout << c << endl;sprintf(c, "%d-%.2f", n, f);cout << c << endl;system("pause");return 0;}

輸出:

30
36
1E
//注:這裡是個特殊符號
24.677999
24.68
30-24.68


三、使用stringstream
舉例:

#include <iostream>#include <string>#include <sstream>using namespace std;int main(){stringstream strStream;int a = 100;float f = 23.5566;strStream << a << "----"<< f ;string s = strStream.str();cout << s << endl;system("pause");return 0;}

 

輸出:

100----23.5566

聯繫我們

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