致命信号11(SIGSEGV),使用Android NDK C ++时出现代码1错误

时间:2016-05-03 08:22:31

标签: java android c++ android-ndk sigsegv

在制作通过NDK同时使用Java和C ++代码的Android应用时,我收到以下错误。具体来说,我尝试了很多有效的输入(这是一个计算器应用程序)并且它们都导致了这个错误,但是,例如,我试过的一个是4 + 3-5

05-03 00:54:05.676 30652-30652/com.x10host.dhanushpatel.nativecalc A/libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0xd89f95b0 in tid 30652 (atel.nativecalc)
05-03 00:54:06.462 30652-30652/com.x10host.dhanushpatel.nativecalc W/atel.nativecalc: type=1701 audit(0.0:1454): auid=4294967295 uid=10192 gid=10192 ses=4294967295 subj=u:r:untrusted_app:s0 reason="memory violation" sig=11

我不确定我的错误是什么或在哪里或如何修复它。

这是我的C ++代码:

#include <jni.h>
#include <stack>
#include <string>
#include <cctype>
#include <sstream>
#include <stdlib.h>

#include <android/log.h>

using namespace std;
stack<string> operationsStack;
stack<double> numbersStack;
int arraySize = 0;

extern "C" {


void doOperation() {

    string oString = operationsStack.top();
    operationsStack.pop();

    double a = numbersStack.top();
    numbersStack.pop();
    double b = numbersStack.top();
    numbersStack.pop();

    if (oString == "x") {
        numbersStack.push(a * b);
    }
    else if (oString == "/") {
        numbersStack.push(b/a);
    }
    else if (oString == "+") {
        numbersStack.push(a + b);
    }
    else {
        numbersStack.push(b-a);
    }

}

double calcExpression(string calcArray[]) {

    for (int i = 0; i < arraySize; i++) {
        string chr = calcArray[i];
        if (chr == "(") {
        }
        else if (chr == "+" || chr == "x" || chr == "-" || chr == "/") {
            operationsStack.push(chr);
        }
        else if (chr == ")") {
            doOperation();
        }
        else {
            numbersStack.push(atof(chr.c_str()));
        }
    }
    doOperation();

    double result = numbersStack.top();
    numbersStack.pop();
    return result;
}

JNIEXPORT jstring JNICALL
Java_com_x10host_dhanushpatel_nativecalc_MainActivity_calcPrint
        (JNIEnv *env, jobject jot, jobjectArray calcArray, jint aSize) {

    arraySize = aSize;

    string cppArray[arraySize];
    for (int i = 0; i < arraySize; i++) {
        jstring string = (jstring) ((env)->GetObjectArrayElement(calcArray, i));
        const char *rawString = env->GetStringUTFChars(string, 0);
        cppArray[i] = rawString;
    }
    ostringstream oss;
    oss << calcExpression(cppArray);

    return env->NewStringUTF(oss.str().c_str());


}

JNIEXPORT void JNICALL
Java_com_x10host_dhanushpatel_nativecalc_MainActivity_calcCClear(JNIEnv *env) {
    while (!operationsStack.empty()) {
        operationsStack.pop();
    }
    while (!numbersStack.empty()) {
        numbersStack.pop();
    }
}

}

这是我的Java代码:

package com.x10host.dhanushpatel.nativecalc;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

import java.util.ArrayList;

public class MainActivity extends AppCompatActivity {

    private native String calcPrint(String[] jCL,int alLength);
    private native void calcCClear();
    ArrayList<String> jCalcList = new ArrayList<>();
    TextView calcShow;

    static {
        System.loadLibrary("cplusplus11");
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        calcShow = (TextView) findViewById(R.id.calcShow);

    }

    public void calcAdd(View v) {
        Button b = (Button) v;
        String buttonText = b.getText().toString();
        Log.i("button pressed: ",buttonText);
        jCalcList.add(buttonText);
        calcShow.setText(calcShow.getText().toString()+buttonText);
    }

    public void calcSum(View v){
        int jclSize = jCalcList.size();
        String[] jCalcArray = new String[jclSize];
        for(int i =0;i<jclSize;i++){
            jCalcArray[i]=jCalcList.get(i);
        }
        calcShow.setText(calcPrint(jCalcArray,jCalcArray.length));
    }

    public void calcClear(View v){
        calcCClear();
        calcShow.setText("");
    }

}

帮助真的很感激。提前谢谢!

1 个答案:

答案 0 :(得分:0)

我修复了我的问题,我的代码不再出错,我的应用程序不再崩溃。实际上,代码的逻辑正在发挥作用。仍然需要添加/更改某些功能,但这些功能与我在此处提到的问题无关。

编辑:我的代码更改(可能)修复它包括在calcSum中正确设置/获取循环的最大值,使用double变量来存储double结果而不是int(在C ++代码中的某处),并且可能还有其他变化。我意识到的另一件事是我的代码只是在括号内计算表达式,这不是程序的错,故障在于我对代码逻辑的假设。

总结:如果在这种情况下发生此错误,您可能需要修复代码,程序在技术上应该按照您的代码运行。