Wesley13 Wesley13
3年前
java.lang.ClassFormatError解决办法
严重: Error configuring application listener of class com.sun.faces.config.ConfigureListenerjava.lang.ClassFormatError: Absent Code attribute in method that is not native or
Stella981 Stella981
3年前
React.createClass 、React.createElement、Component
react里面有几个需要区别开的函数React.createClass、React.createElement、Component首选看一下在浏览器的下面写法:<divid"app"</div<scriptsrc"../js/react.js"</script<scr
Stella981 Stella981
3年前
Object类
作为万类之首的Object类,我们有必要详细全面的了解一下。Object类定义在Object.java文件,属于包java.lang。Object类有一个私有方法privatestaticnativevoidregisterNatives().native是java语言的一个关键字.使用native关键字说明这个方法是原生函数,也就是这个
Stella981 Stella981
3年前
Register native method
Registernativemethod数据类型和methoddescriptor使用JNI时,为了使得虚拟机可以找到在C/Ccode中定义的native方法,有两种机制可以用,一种是通过为native方法以特定格式命名来实现,另外的一种是所谓的JNI\_OnLoad机制。更多信息,可参考《androidapp中使用JNI》(h
Stella981 Stella981
3年前
React.render和reactDom.render的区别
这个是react最新版api,也就是0.14版本做出的改变。主要是为了使React能在更多的不同环境下更快、更容易构建。于是把react分成了react和reactdom两个部分。这样就为web版的react和移动端的ReactNative共享组件铺平了道路。也就是说我们可以跨平台使用相同的react组件。 新的react包包含了React.crea