我在 Eclipse 中有一个 Android 项目。在jni
我创建的文件夹Store.h
中,我刚刚定义:
class Store{
};
在Store.c
我输入:
#include "Store.h"
而且我在定义中遇到错误,class Store
但是如果我使用Store.hpp
andStore.cpp
文件而不是.h
并且.c
我没有收到任何错误。谁能解释为什么?在这种情况下使用哪种格式更好,为什么?
我在 Eclipse 中有一个 Android 项目。在jni
我创建的文件夹Store.h
中,我刚刚定义:
class Store{
};
在Store.c
我输入:
#include "Store.h"
而且我在定义中遇到错误,class Store
但是如果我使用Store.hpp
andStore.cpp
文件而不是.h
并且.c
我没有收到任何错误。谁能解释为什么?在这种情况下使用哪种格式更好,为什么?