- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[JNI/NDK] NDK로 제작할 때 C와 C++의 차이 본문
컴파일 될 코드
■ C로 제작할 때
#include <string.h>
#include <jni.h>
jstring
Java_com_example_hellojni_HelloJni_stringFromJNI( JNIEnv* env, jobject thiz )
{
return (*env)->NewStringUTF(env, "Hello from JNI !");
}
■ C++로 제작할 때
#include <string.h>
#include <jni.h>
extern "C" {
JNIEXPORT jstring JNICALL
Java_com_example_hellojni_HelloJni_stringFromJNI( JNIEnv* env, jobject thiz )
{
return env->NewStringUTF("Hello, NDK!");
}
}
mk 파일
■ C로 제작할 때
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := hello-jni
LOCAL_SRC_FILES := hello-jni.c
include $(BUILD_SHARED_LIBRARY)
■ C++로 제작할 때
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_DEFAULT_CPP_EXTENSION := cpp
LOCAL_MODULE := hello-jni
LOCAL_SRC_FILES := hello-jni.cpp
include $(BUILD_SHARED_LIBRARY)
[출처] [Android] NDK로 제작할 때 C와++의 차이|작성자 후덜덜
[출처] http://blog.naver.com/PostView.nhn?blogId=rabdol99&logNo=50109743209
'★─Programing > ☆─JNI | NDK' 카테고리의 다른 글
[JNI/NDK] C/C++ 코드, 안드로이드 세상으로 마이그레이션 하기 (0) | 2013.06.19 |
---|---|
[JNI/NDK] JNI 간단 요약 (플랫폼 독립성을 버리고, 기능을 취한다) (0) | 2013.06.19 |
[JNI/NDK] How to convert Arraylist in java to lpwstr in c using jni (0) | 2013.06.14 |
[JNI/NDK] JNI Tutorial - Local and Global References (0) | 2013.06.04 |
[JNI/NDK] JNI string type 다루는 법 (0) | 2013.06.04 |