Невозможно получить доступ к объектам c ++ в java и получить неправильные результаты Функции c ++ из long objectptr на уровне JNI в android studio - PullRequest
1 голос
/ 29 мая 2020

Я пытаюсь вызвать методы c ++, создав указатель класса c ++ и сохраняя его в длинном значении в java как член данных в классе java и пытаюсь получить доступ к методам вызова c ++ из объекта, созданного путем передачи длинного значения хранится и передает его собственным методам, которые я хочу вызвать. Я конвертирую это в класс Numbers в собственных методах, класс, методы которого я хочу получить. Но дает неправильный вывод. Думаю, какая-то фигня. Я совершенно не знаком с этой концепцией. Может ли кто-нибудь сказать мне точную проблему или исправить ошибки, если они были сделаны.

Прямо сейчас я пытаюсь использовать очень простой пример создания класса Numbers, который поддерживает простые операции с двумя числами, add, mul, sub и один конструктор для инициализировать числа - a и b. Найдите код для различных классов:

MainActivity. java

package com.example.maths;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

    private long  numberptr = 0; //c++ object reference

    // Used to load the 'native-lib' library on application startup.
    static {
        System.loadLibrary("native-lib");
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //Creating Number object
        numberptr = createNumber();

        //Performing add operation
        int result = nativeAdd(numberptr);

        // Example of a call to a native method
        TextView tv = findViewById(R.id.sample_text );
        tv.setText(stringFromJNI() + "result is " + result);
    }

    /**
     * A native method that is implemented by the 'native-lib' native library,
     * which is packaged with this application.
     */
    public native String stringFromJNI();

    //Native method to create instance of Number (c++ class) and store it in java in numberptr long object
    public native long createNumber();

    public native int nativeAdd(long numberptr);
}

Native-lib. cpp

#include <jni.h>
#include <string>
#include "Numbers.h"

extern "C" JNIEXPORT jstring JNICALL
Java_com_example_maths_MainActivity_stringFromJNI(
        JNIEnv* env,
        jobject /* this */) {
    std::string hello = "Hello from C++";
    return env->NewStringUTF(hello.c_str());
}
extern "C"
JNIEXPORT jlong JNICALL
Java_com_example_maths_MainActivity_createNumber(JNIEnv *env, jobject thiz) {
    // TODO: implement createNumber()
    return reinterpret_cast<jlong>(new Numbers(3, 4));
}

extern "C"
JNIEXPORT jint JNICALL
Java_com_example_maths_MainActivity_nativeAdd(JNIEnv *env, jobject thiz, jlong numberptr) {
    // TODO: implement nativeAdd()
    Numbers* num = reinterpret_cast<Numbers *>(numberptr);
    return num->add();
}

Numbers.h

#ifndef MATHS_NUMBERS_H
#define MATHS_NUMBERS_H


class Numbers {
    int a, b;

public:
    Numbers(int,int);
    int add();
    int mul();
    int sub();
};


#endif //MATHS_NUMBERS_H

Числа. cpp

#include "Numbers.h"

Numbers::Numbers(int a, int b) {
    a = a;
    b = b;
}

int Numbers::add() {
    return a+b;
}

int Numbers::mul() {
    return a*b;
}

int Numbers::sub() {
    return a-b;
}

CmakeLists.txt

# For more information about using CMake with Android Studio, read the
# documentation: https://d.android.com/studio/projects/add-native-code.html

# Sets the minimum version of CMake required to build the native library.

cmake_minimum_required(VERSION 3.4.1)

# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.

add_library( # Sets the name of the library.
             native-lib

             # Sets the library as a shared library.
             SHARED

             # Provides a relative path to your source file(s).
             native-lib.cpp
             Numbers.cpp
        )

# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.

find_library( # Sets the name of the path variable.
              log-lib

              # Specifies the name of the NDK library that
              # you want CMake to locate.
              log )

# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.

target_link_libraries( # Specifies the target library.
                       native-lib

                       # Links the target library to the log library
                       # included in the NDK.
                       ${log-lib} )

Скажите, пожалуйста, в чем проблема и как именно с ней обращаться. Заранее спасибо.

...