_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_s はbase で配列の要素に一致 key ポインターを返します。キーが存在しない場合_lfind_s は NULL を返します。
この関数に無効なパラメーターが渡されると無効なパラメーター ハンドラーが パラメーターの検証 に説明されているように開始されます。実行の継続が許可された場合、errno が EINVAL に設定され、関数から NULL が返されます。
エラー条件
キー |
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) を返します (要素は同じ意味になります)。
_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) );
}