atol、_atol_l、_wtol、_wtol_l
長整数に文字列を変換します。
long atol(
const char *str
);
long _atol_l(
const char *str,
_locale_t locale
);
long _wtol(
const wchar_t *str
);
long _wtol_l(
const wchar_t *str,
_locale_t locale
);
パラメーター
str
変換対象の文字列。locale
使用するロケール。
戻り値
各 long 値は数字として入力文字の解釈によって生成された関数の戻り値。 戻り値の型が、その型の値に変換できない場合 atol の 0L です。
大きい正の整数値でオーバーフローの場合、atol は LONG_MAX;を返します 大規模負のな整数値でオーバーフローの場合、LONG_MIN が返されます。 範囲外のすべての場合、errno は ERANGE に設定されます。 渡されるパラメーターが NULLの場合、無効なパラメーター ハンドラーが パラメーターの検証"に説明されているように、呼び出されます。 実行の継続が許可された場合、これらの関数は errno を EINVAL に設定し、0 を返します。
解説
これらの関数は長整数値 (atol) に文字列を変換します。
入力文字列は、指定された型の数値として解釈できる文字シーケンスです。 関数は、数値の一部として認識できない文字に最初に遭遇した時点で入力文字列の読み取りを停止します。 この文字を文字列の末尾を表す NULL の文字 (「\0」または」L」\0) である場合もあります。
atol の str 引数には、次の形式があります。
[whitespace] [sign] [digits]]
whitespace はスペースまたはタブで構成され、無視されます。sign はプラス (+) またはマイナス (–) のいずれかで、digits は 1 つ以上の数字です。
_wtol は atol と同じですが、ワイド文字列を使用します。
_l サフィックスが付いているこれらの関数の各バージョンは、現在のロケールの代わりに渡されたロケール パラメーターを使用する点を除いて同じです。 詳細については、「ロケール」を参照してください。
汎用テキスト ルーチンのマップ
TCHAR.H のルーチン |
_UNICODE & _MBCS が未定義の場合 |
_MBCS が定義されている場合 |
_UNICODE が定義されている場合 |
---|---|---|---|
_tstol |
atol |
atol |
_wtol |
_ttol |
atol |
atol |
_wtol |
必要条件
ルーチン |
必須ヘッダー |
---|---|
atol |
<stdlib.h> |
_atol_l, _wtol, _wtol_l |
<stdlib.h と> wchar.h <> |
使用例
このプログラムは、文字列として格納される数が atol 関数を使用して数値に変換する方法について説明します。
// crt_atol.c
// This program shows how numbers stored as
// strings can be converted to numeric values
// using the atol functions.
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
int main( void )
{
char *str = NULL;
long value = 0;
// An example of the atol function
// with leading and trailing white spaces.
str = " -2309 ";
value = atol( str );
printf( "Function: atol( \"%s\" ) = %d\n", str, value );
// Another example of the atol function
// with an arbitrary decimal point.
str = "314127.64";
value = atol( str );
printf( "Function: atol( \"%s\" ) = %d\n", str, value );
// Another example of the atol function
// with an overflow condition occurring.
str = "3336402735171707160320";
value = atol( str );
printf( "Function: atol( \"%s\" ) = %d\n", str, value );
if (errno == ERANGE)
{
printf("Overflow condition occurred.\n");
}
}