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


C語言 wcstoul用法及代碼示例


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

用法:

unsigned long int wcstoul (const wchar_t* str, wchar_t** endptr, int base);
將寬字符串轉換為無符號長整數
解析C寬字符串str將其內容解釋為指定內容的整數根據,以unsigned long int值。

這是寬字符等價於strtoul(<cstdlib>),翻譯str以同樣的方式。

參數

str
包含整數表示形式的C寬字符串。
endptr
引用類型的對象wchar_t*,其值由函數設置為中的下一個字符str數值之後。
此參數也可以是空指針,在這種情況下不使用。

返回值

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

示例

/* wcstoul example */
#include <stdio.h>
#include <wchar.h>

int main ()
{
  wchar_t wsInput [256];
  unsigned long ul;
  wprintf (L"Enter an unsigned number: ");
  fgetws (wsInput,256,stdin);
  ul = wcstoul (wsInput,NULL,0);
  wprintf (L"Value entered: %lu. Its double: %lu\n",ul,ul*2);
  return 0;
}


可能的輸出:
Enter an unsigned number: 25
Value entered: 25. Its double: 50

相關用法


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