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


C語言 strtoul用法及代碼示例


C語言stdlib頭文件(stdlib.h)中strtoul函數的用法及代碼示例。

用法:

unsigned long int strtoul (const char* str, char** endptr, int base);
將字符串轉換為無符號長整數
解析C-stringstr,將其內容解釋為指定內容的整數base,它以type的值形式返回unsigned long int

該函數的運作方式類似於strtol解釋字符串,但產生類型的數字unsigned long int(參考strtol有關解釋過程的詳細信息)。

參數

str
C-string包含整數的表示形式。
endptr
引用類型的對象char*,其值由函數設置為中的下一個字符str數值之後。
此參數也可以是空指針,在這種情況下不使用它。
base
確定有效字符及其解釋的數字基數(基數)。
如果是這樣0,所用的底數由序列中的格式決定(請參見strtol有關詳細信息)。

返回值

成功後,該函數將轉換後的整數返回為unsigned long int值。
如果無法執行有效的轉換,則返回零值。
如果讀取的值超出可表示的值範圍unsigned long int,函數返回ULONG_MAX(在<climits>), 和errno被設定為ERANGE

示例

/* strtoul example */
#include <stdio.h>      /* printf, NULL */
#include <stdlib.h>     /* strtoul */

int main ()
{
  char buffer [256];
  unsigned long ul;
  printf ("Enter an unsigned number: ");
  fgets (buffer, 256, stdin);
  ul = strtoul (buffer, NULL, 0);
  printf ("Value entered: %lu. Its double: %lu\n",ul,ul*2);
  return 0;
}


可能的輸出:

Enter an unsigned number: 30003
Value entered: 30003. Its double: 60006

舉一個例子endptr使用中的參數請參見strtol



相關用法


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