다음을 통해 공유


_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

모든

모든

모든

모든

0

EINVAL

모든

모든

NULL

모든

EINVAL

설명

_lfind_s 함수 값에 대 한 선형 검색을 수행 key 배열에 있는 num 의 각 요소를 width 바이트입니다.달리 bsearch_s, _lfind_s 배열을 정렬 하려면 필요 하지 않습니다.base 인수에 대 한 포인터의 배열 검색할 수 있습니다.compare 인수는 배열 요소 두 개를 비교 하 여 다음 간의 관계를 지정 하는 값을 반환 하는 사용자 제공 루틴에 대 한 포인터입니다._lfind_s호출의 compare 루틴 한 번 이상 전달 하 여 검색 하는 동안은 context 포인터와 각 호출에서 두 개의 배열 요소에 대 한 포인터입니다.compare 루틴의 요소를 비교 하 고 (의미는 요소가 다릅니다) 0이 아닌 값을 반환 해야 또는 0 (요소를 동일한 수 없음).

_lfind_s유사한 _lfind 의 추가를 제외 하 고는 context 인수를 비교 함수 및 함수 매개 변수 목록에 대 한 포인터입니다.context 포인터가 검색된 데이터 구조가 개체에 포함 된 경우 유용 하 게 사용할 수 있습니다 하는 compare 함수를 필요로 하는 개체의 멤버에 액세스할 수 있습니다.compare 함수는 void 포인터 적절 한 개체 유형 및 액세스의 멤버 개체에 캐스팅 수 있습니다.추가 context 매개 변수에 있습니다 _lfind_s 추가 컨텍스트 데이터를 사용할 수 있도록 정적 변수를 사용 하는 재진입 버그를 방지 하기 위해 사용 될 수 있으므로 더욱 안전한는 compare 함수.

요구 사항

루틴

필수 헤더

_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) );
}
  

해당 .NET Framework 항목

Contains

참고 항목

참조

검색 및 정렬

bsearch_s

_lsearch_s

qsort_s

_lfind