_lfind_s
执行线性搜索指定的键。 _lfind 的版本与安全增强的 CRT中的安全功能如中所述。
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 指针。 第二个参数是指向搜索的键。 第三个参数是指向数组元素与密钥进行比较。context
对于比较函数可能捕获的对象的指针。
返回值
如果找到键时, _lfind_s 返回指向该数组的元素中的 base 匹配 key。 如果未找到键时, _lfind_s 返回 NULL。
如果传递的参数无效传递给函数,无效参数调用处理程序,如 参数验证所述。 如果执行允许继续, errno 设置为 EINVAL ,函数返回 NULL。
错误状态
键 |
base |
compare |
num |
size |
errno |
---|---|---|---|---|---|
NULL |
任何 |
任何 |
任何 |
任何 |
EINVAL |
任何 |
NULL |
任何 |
!= 0 |
任何 |
EINVAL |
任何 |
任何 |
任何 |
任何 |
零 |
EINVAL |
任何 |
任何 |
NULL |
an |
任何 |
EINVAL |
备注
_lfind_s 函数在数组 num 组件,每个执行线性搜索该值 keywidth 字节。 不同 bsearch_s, _lfind_s 不需要数组进行排序。 base 参数是指向要搜索的数组的基础。 compare 参数是指向比较两个数组元素然后返回指定它们之间的关系的值为用户提供的实例。 要在搜索时,_lfind_s 调用 compare 实例一次或多次,通过 context 指针,对两个数组元素的指针在每次调用。 compare 实例必须比较元素然后返回非零 (表明元素会有所不同) 或 0 (表示组件的相同)。
_lfind_s 类似于 _lfind 除 context 指针的添加于比较函数的参数,而且参数函数。 context 指针非常有用,如果要搜索的数据结构是对象的一部分,而且 compare 功能需要对象的成员。 compare 功能可以转换无效指针到该对象的相应对象类型和访问成员。 ,因为附加的上下文来避免重新进入该 bug 与使用静态变量使数据可用于 compare 功能, context 参数的添加可 _lfind_s 更加安全。
要求
实例 |
必需的头 |
---|---|
_lfind_s |
search.h |
有关更多兼容性信息,请参见中介绍的 兼容性 。
示例
// 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) );
}