1
On android, when debugging my program I can see the vector and content of it:
I have to pass this vector from android (java) to C++ and I’m using NDK.
public native void testeVetor(double[] vetorDados);
testeVetor(vetorDados);
testeVetor is a function in C++:
Currently when I debug, when it arrives at C++, it shows the vector this way:
My question is: when I am debugging, how can I display the vector in C++ just as it is displayed in java?