Display array during debug with android NDK

1

In android, when debugging my program I can see the vector and its contents:

Ihavetopassthisvectorfromandroid(java)toC++andI'musingNDK.

publicnativevoidtesteVetor(double[]vetorDados);testeVetor(vetorDados);

testVetorisafunctioninC++:

CurrentlywhenIdebug,whenitarrivesinC++,itshowsthevectorthisway:

My question is: when I have debugging, how can I display the vector in C ++ just as it is displayed in Java?

    
asked by anonymous 14.10.2017 / 21:13

0 answers