使用 P/Invoke 导致系统 AccessViolationException

Using P/Invoke causes system AccessViolationException

我在使用 P/Invoke 从 C# 代码使用 C++ 函数时遇到问题。我已将 http://www.codeproject.com/Articles/403285/P-Invoke-Tutorial-Basics-Part 上的教程用作基本示例,一旦我开始使用它,我就将其改编为我自己的代码。

这是生成 System.AccessViolationException,附加信息:'Attempted to read or write protected memory. This is often an indication that other memory is corrupt.'

我的C++header文件'NativeLib.h'如下:

#include <string>

#ifndef _NATIVELIB_H_
#define _NATIVELIB_H_

#ifndef MYAPI
#define MYAPI
#endif

#ifdef __cplusplus
extern "C" {
#endif

    MYAPI float modelScore(std::string word);

#ifdef __cplusplus
}
#endif

#endif // _NATIVELIB_H_

其中 MYAPI 是定义为 'MYAPI=__declspec(dllexport)' 的预处理器定义。 .cpp文件,'NativeLib.cpp'如下:

#include "NativeLib.h"
#include <stdio.h>
#include "lm/model.hh"
#include <iostream>
#include <string>

MYAPI float modelScore(std::string word) {
    using namespace lm::ngram;
    Model model(---MODEL FILE LOCATION---);

    State state(model.BeginSentenceState()), out_state;
    const Vocabulary &vocab = model.GetVocabulary();

    return model.Score(state, vocab.Index(word), out_state);

}

我正在使用以下代码从 C# 访问它:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;

namespace PInvokeTest
{
    class Program
    {
        static void Main(string[] args)
        {
            modelScore("a");
            Console.WriteLine("Press enter to close...");
            Console.ReadLine();
        }

        [DllImport("NativeLib.dll", CallingConvention = CallingConvention.Cdecl)]
        private static extern float modelScore(string word);
    }
}

代码正在构建而不会失败,所有适当的库都已链接并包含在 header 路径中。 C++ 代码从 C++ 本身运行良好,所以我的问题在于将代码与 C# 链接,但我看不出问题出在哪里。任何帮助将不胜感激。

默认情况下,

P/Invoke 将 C# string 编组为 C 字符串。你的 C 函数的参数应该是 const char*,而不是 std::string.

一般来说,您应该避免使用依赖于非 POD 类型的签名导出函数,例如 std::string。使用者(在本例中为 C#)不知道您的 DLL 使用的 std::string 的内存布局,因此它甚至无法创建一个来调用您的函数。