tags:

views:

49

answers:

2

hi,

I'm pretty new to Android development and I'd like to know whether Android supports the above mentioned features which are there in C.

Thanks in advance.

A: 

Not sure whether it has those integrated into the language, but if you really need to access any Native C methods, you could use JNI (Java Native Interface), which will allow you to run Native C code.

Also, take a look at the Exception and File classes - they may give you similar functionality.

xil3
hm I'm thinking that it might be so as you said.As far as JNI is concerned I'll look for more information on that.Thanks
Code.Warrior
Just updated my answer.
xil3
+1  A: 

You shouldn't need them. Apps for Android are generally done in Java. setjmp/longjmp is a C/C++ thing (yes, I programmed in it for a while and still hate it :-)

kenyee