_lfind_s
指定したキーのリニア サーチを実行します。 この関数は、「CRT のセキュリティ機能」に説明されているように、_lfind のセキュリティが強化されたバージョンです。
void *_lfind_s(
const void *key,
const void *base,
unsigned int *num,
size_t size,
int (__cdecl *compare)(void *, const void *, const void *),
void * context
);
パラメーター
key
検索するオブジェクト。base
検索するデータ配列のベースへのポインター。num
配列の要素数。size
バイトの配列要素のサイズ。compare
比較ルーチンへのポインター。 最初のパラメーターは context のポインターです。 2 番目のパラメーターは、検索用に調整するポインターです。 3 番目のパラメーターは、キーと比較される配列要素へのポインターです。context
比較関数にアクセスできるオブジェクトへのポインター。
戻り値
キーがある場合は、_lfind_sbase で配列要素へのポインターを返します。key一致 キーが存在しない場合、_lfind_s は NULLを返します。
この関数に無効なパラメーターが渡されると、無効なパラメーター ハンドラーが パラメーターの検証"に説明されているように、呼び出されます。 実行の継続が許可された場合、errno が EINVAL に設定され、関数から NULL が返されます。
エラー条件
key |
base |
compare |
num |
size |
errno |
---|---|---|---|---|---|
NULL |
任意 |
任意 |
任意 |
任意 |
EINVAL |
任意 |
NULL |
任意 |
!= 0 |
任意 |
EINVAL |
任意 |
任意 |
任意 |
任意 |
0 |
EINVAL |
任意 |
任意 |
NULL |
an |
任意 |
EINVAL |
解説
_lfind_s 関数は num 要素の配列、width の各バイトの値 key のリニア サーチを実行します。 bsearch_sとは異なり、_lfind_s は配列が並べ替えられるように必要がありません。 base の引数は、検索する配列のベースへのポインターです。 compare の引数は、2 種類の配列要素を比較し、指定されている値を返す関係ユーザーが指定したルーチンへのポインターです。 _lfind_s は 一つ以上の時間検索中に compare ルーチンを呼び出し、context のポインターやポインターを各呼び出しの 2 種類の配列要素を渡します。 compare ルーチンは、要素が異なっている要素を比較する必要があります。ただし、および 0 以外の (つまりことを) または 0 (要素を意味して同じにしてください。
_lfind_s は 関数の比較関数とパラメーター リストの引数へのポインター context の追加を除く _lfind に似ています。 context のポインターはオブジェクトのメンバーにアクセスする検索対象のデータ構造体がオブジェクトと compare 関数のニーズに含まれる場合に便利です。 compare 関数は適切なオブジェクト型に void なポインターにキャストし、そのオブジェクトのメンバーにアクセスできます。 context パラメーターの追加は静的変数の使用に関連する再入のバグを避けるには、データを compare 関数で使用できるようにするために追加のコンテキストを使用できるため _lfind_s をより安全になります。
必要条件
ルーチン |
必須ヘッダー |
---|---|
_lfind_s |
<search.h> |
互換性の詳細については、「C ランタイム ライブラリ」の「互換性」を参照してください。
使用例
// crt_lfind_s.cpp
// This program uses _lfind_s to search a string array,
// passing a locale as the context.
// compile with: /EHsc
#include <stdlib.h>
#include <stdio.h>
#include <search.h>
#include <process.h>
#include <locale.h>
#include <locale>
#include <windows.h>
using namespace std;
// The sort order is dependent on the code page. Use 'chcp' at the
// command line to change the codepage. When executing this application,
// the command prompt codepage must match the codepage used here:
#define CODEPAGE_850
#ifdef CODEPAGE_850
// Codepage 850 is the OEM codepage used by the command line,
// so \x00e1 is the German Sharp S
char *array1[] = { "wei\x00e1", "weis", "annehmen", "weizen", "Zeit",
"weit" };
#define GERMAN_LOCALE "German_Germany.850"
#endif
#ifdef CODEPAGE_1252
// If using codepage 1252 (ISO 8859-1, Latin-1), use \x00df
// for the German Sharp S
char *array1[] = { "wei\x00df", "weis", "annehmen", "weizen", "Zeit",
"weit" };
#define GERMAN_LOCALE "German_Germany.1252"
#endif
// The context parameter lets you create a more generic compare.
// Without this parameter, you would have stored the locale in a
// static variable, thus making it vulnerable to thread conflicts
// (if this were a multithreaded program).
int compare( void *pvlocale, const void *str1, const void *str2)
{
char *s1 = *(char**)str1;
char *s2 = *(char**)str2;
locale& loc = *( reinterpret_cast< locale * > ( pvlocale));
return use_facet< collate<char> >(loc).compare(
s1, s1+strlen(s1),
s2, s2+strlen(s2) );
}
void find_it( char *key, char *array[], unsigned int num, locale &loc )
{
char **result = (char **)_lfind_s( &key, array,
&num, sizeof(char *), compare, &loc );
if( result )
printf( "%s found\n", *result );
else
printf( "%s not found\n", key );
}
int main( )
{
find_it( "weit", array1, sizeof(array1)/sizeof(char*), locale(GERMAN_LOCALE) );
}