C의 콜백
콜백은 함수나 클래스에 인수로 전달되는 호출 가능한 객체입니다. , 특정 콜백을 기반으로 동작을 사용자 정의할 수 있습니다. function.
콜백을 사용하는 이유:
C 11의 호출 가능:
함수 포인터 작성:
int (*)(int); // Function pointer type taking one int argument, returning int int (* foo_p)(int) = &foo; // Initialize pointer to function foo
전화 표기법:
int foobar(int x, int (*moo)(int)); foobar(a, &foo); // Call foobar with pointer to foo as callback
std::function 객체:
std::function<int(int)> stdf_foo = &foo;
호출 표기법:
int stdf_foobar(int x, std::function<int(int)> moo); stdf_foobar(a, stdf_foo);
람다 표현식:
stdf_foobar(a, [c](int x) -> int { return 7+c*x; });
std::bind 표현식:
int nine_x_and_y (int x, int y) { return 9*x + y; } stdf_foobar(a, std::bind(nine_x_and_y, _1, 3));
템플릿 콜백:
template<class R, class T> void stdf_transform_every_int_templ(int * v, unsigned const n, std::function<R(T)> fp) {...}
전화 표기법:
stdf_transform_every_int_templ<int,int&>(&a[0], 5, &woof);
위 내용은 콜백은 어떻게 C의 유연성과 사용자 정의를 향상합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!