C함수에서 C++함수 호출하기

coathanger의 이미지

안녕하세요.. 검색 해 보니 중복되는 질문이지만 이해력이 부족하여 게시물 등록을 하게되었습니다.

//C++ 함수
void CUFPT::ControlSlTimer()
{
   //statement..
}
 
//C 함수
void Caller(void)
{
    ControlSlTimer();
}

위와 같이 C++함수와, C함수를 같은 소스파일안에 사용하고 있습니다. 그런데 C++ 클래스 내부함수인 CUFPT::ControlSlTimer()를
C함수 내에서 위와 같이 void Caller(void)인 C함수에서 호출하려면 어떻게 해야 하나요..
검색 해 보았더니 extern "C"로 C++을 감싸라고 하는데.. 제가 잘 몰라서 해봤더니 되지 않더군요...
클래스 정의 부분도 extern "C"로 감싸야 하는지.. 내부함수 정의 부분도 감싸야 하는지 방법을 모르겠습니다.
감싸는 방법과 호출할 경우 위 처럼 해도 되는건지 지도 부탁 드립니다.;; 불가피하게 C++함수를 호출해야 하는데.. 골치 아프군요..

ktd2004의 이미지

제가 알기로는 다음과 같이 알고 있습니다.
* C++ 함수에서 C함수를 호출할 수 있다.(extern "C" 사용)
* C함수에서 C++ 함수는 호출할 수 없다.

rein의 이미지

일단 C에서 this pointer를 모르기 때문에, 이런 래퍼가 필요합니다. (그리고 C++ linkage가 아니라 C linkage로 만들게 extern "C"로 선언된 함수여야합니다)

extern "C" void call_cpp_function( void* CUFPT_object )
{
((CUFPT*)CUFPT_object)->ControlTimer();
}

같은 형식으로 선언하고, 함수를 호출할 객체를 넘겨주면서 호출하면됩니다.
(다만 class 선언을 인식 못할테니 void* 로 캐스팅해서 전달하게 되죠)

coathanger의 이미지

그러나 위 함수를 만들고 호출하는 곳은 C함수인데 객체가 C함수에서 안만들어 집니다.
어떤 식으로 객체를 만들어서 넘기는건지.. 죄송합니다..

doldori의 이미지

당연히 C++ 코드쪽에서 만들어야죠.
대략 이런 식으로 하면 됩니다.

// C++ code
class CUFPT
{
public:
    CUFPT(const char* s);  // just for example
    void ControlSlTimer();
};
 
extern "C" CUFPT* createObject(const char* s)
{
    return new CUFPT(s);
}
 
extern "C" void destroyObject(CUFPT* p)
{
    delete p;
}
 
extern "C" void callMemberFunction(CUFPT* p)
{
    p->ControlSlTimer();
}
 
extern "C" void createAndCallMemberFunction(const char* s)
{
    CUFPT object(s);
    object.ControlSlTimer();
}
 
// C code
struct CUFPT;
struct CUFPT* createObject(const char* s);
void destroyObject(struct CUFPT* p);
void callMemberFunction(struct CUFPT* p);
void createAndCallMemberFunction(const char* s);
 
void caller()
{
    const char* s = "some info";
    struct CUFPT* object = createObject(s);
    callMemberFunction(object);
    destroyObject(object);    
    // ... or let C++ code take care of construction and destruction
    createAndCallMemberFunction(s);
}

coathanger의 이미지

상세한 답변 정말 감사합니다. (_ _)

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.