當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ strtoimax()用法及代碼示例


C++中的strtoimax()函數將字符串的內容解釋為指定基數的整數,並將其值作為intmax_t(最大寬度整數)返回。此函數還設置一個結束指針,該指針指向字符串的最後一個有效數字字符之後的第一個字符,如果沒有這樣的字符,則將指針設置為null。此函數在cinttypes頭文件中定義。

用法:

intmax_t strtoimax(const char* str, char** end, int base)

參數:


  • str:指定由整數組成的字符串。
  • end:它是對char *類型的對象的引用。 end的值由函數設置為str中最後一個有效數字字符之後的下一個字符。如果不使用此參數,它也可以是空指針。
  • base:它代表t

確定有效字符及其在字符串中的解釋的數字基數(基數)

返回類型strtoimax()函數返回兩個值,如下所述:

  • 如果發生有效轉換,則該函數將轉換後的整數返回為整數值。
  • 如果無法執行有效的轉換,則返回零值(0)

以下示例程序旨在說明上述函數:

示例1:

// C++ program to illustrate the 
// strtoimax() function 
#include <bits/stdc++.h> 
using namespace std; 
  
// Driver code 
int main() 
{ 
    int base = 10; 
    char str[] = "1000xyz"; 
    char* end; 
    intmax_t num; 
  
    num = strtoimax(str, &end, base); 
    cout << "Given String = " << str << endl; 
    cout << "Number with base 10 in string " << num << endl; 
    cout << "End String points to " << end << endl 
         << endl; 
  
    // in this case the end pointer points to null 
    // here base change to char16 
    base = 16; 
    strcpy(str, "ff"); 
    cout << "Given String = " << str << endl; 
    num = strtoimax(str, &end, base); 
    cout << "Number with base 16 in string " << num << endl; 
    if (*end) { 
        cout << end; 
    } 
    else { 
        cout << "Null pointer"; 
    } 
    return 0; 
}
輸出:
Given String = 1000xyz
Number with base 10 in string 1000
End String points to xyz

Given String = ff
Number with base 16 in string 255
Null pointer

示例2:
程序以不同的基準轉換多個值

// C++ program to illustrate the 
// strtoimax() function 
#include <bits/stdc++.h> 
using namespace std; 
  
// Drriver code 
int main() 
{ 
    char str[] = "10 50 f 100 "; 
    char* end; 
    intmax_t a, b, c, d; 
  
    // at base 10 
    a = strtoimax(str, &end, 10); 
    // at base 8 
    b = strtoimax(end, &end, 8); 
    // at base 16 
    c = strtoimax(end, &end, 16); 
    // at base 2 
    d = strtoimax(end, &end, 2); 
    cout << "The decimal equivalents of all numbers are \n"; 
    cout << a << endl 
         << b << endl 
         << c << endl 
         << d; 
    return 0; 
}
輸出:
The decimal equivalents of all numbers are 
10
40
15
4


相關用法


注:本文由純淨天空篩選整理自Aman Goyal 2大神的英文原創作品 strtoimax() function in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。