A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Linuxgg 中级黑马   /  2014-4-16 00:54  /  803 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

今天看代码的时候,发现一个问题,就是这种native的,是没有源码的,兄弟们有谁知道去哪里找?
  1. /**
  2.      * Returns a hash code value for the object. This method is
  3.      * supported for the benefit of hashtables such as those provided by
  4.      * <code>java.util.Hashtable</code>.
  5.      * <p>
  6.      * The general contract of <code>hashCode</code> is:
  7.      * <ul>
  8.      * <li>Whenever it is invoked on the same object more than once during
  9.      *     an execution of a Java application, the <tt>hashCode</tt> method
  10.      *     must consistently return the same integer, provided no information
  11.      *     used in <tt>equals</tt> comparisons on the object is modified.
  12.      *     This integer need not remain consistent from one execution of an
  13.      *     application to another execution of the same application.
  14.      * <li>If two objects are equal according to the <tt>equals(Object)</tt>
  15.      *     method, then calling the <code>hashCode</code> method on each of
  16.      *     the two objects must produce the same integer result.
  17.      * <li>It is <em>not</em> required that if two objects are unequal
  18.      *     according to the {@link java.lang.Object#equals(java.lang.Object)}
  19.      *     method, then calling the <tt>hashCode</tt> method on each of the
  20.      *     two objects must produce distinct integer results.  However, the
  21.      *     programmer should be aware that producing distinct integer results
  22.      *     for unequal objects may improve the performance of hashtables.
  23.      * </ul>
  24.      * <p>
  25.      * As much as is reasonably practical, the hashCode method defined by
  26.      * class <tt>Object</tt> does return distinct integers for distinct
  27.      * objects. (This is typically implemented by converting the internal
  28.      * address of the object into an integer, but this implementation
  29.      * technique is not required by the
  30.      * Java<font size="-2"><sup>TM</sup></font> programming language.)
  31.      *
  32.      * @return  a hash code value for this object.
  33.      * @see     java.lang.Object#equals(java.lang.Object)
  34.      * @see     java.util.Hashtable
  35.      */
  36.     public native int hashCode();
复制代码

评分

参与人数 1技术分 +1 收起 理由
菜小徐 + 1

查看全部评分

1 个回复

倒序浏览
 Java不是完美的,Java的不足除了体现在运行速度上要比传统的C++慢许多之外,Java无法直接访问到操作系统底层(如系统硬件等),为此Java使用native方法来扩展Java程序的功能。

  可以将native方法比作Java程序同C程序的接口,其实现步骤:

  1、在Java中声明native()方法,然后编译;

  2、用javah产生一个.h文件;

  3、写一个.cpp文件实现native导出方法,其中需要包含第二步产生的.h文件(注意其中又包含了JDK带的jni.h文件);

  4、将第三步的.cpp文件编译成动态链接库文件;

  5、在Java中用System.loadLibrary()方法加载第四步产生的动态链接库文件,这个native()方法就可以在Java中被访问了。

  JAVA本地方法适用的情况

  1.为了使用底层的主机平台的某个特性,而这个特性不能通过JAVA API访问

  2.为了访问一个老的系统或者使用一个已有的库,而这个系统或这个库不是用JAVA编写的

  3.为了加快程序的性能,而将一段时间敏感的代码作为本地方法实现。

  首先写好JAVA文件

  /*

  * Created on 2005-12-19 Author shaoqi

  */

  package com.hode.hodeframework.modelupdate;

  public class CheckFile

  {

  public native void displayHelloWorld();

  static

  {

  System.loadLibrary("test");

  }

  public static void main(String[] args) {

  new CheckFile().displayHelloWorld();

  }

  }

  然后根据写好的文件编译成CLASS文件

  然后在classes或bin之类的class根目录下执行javah -jni com.hode.hodeframework.modelupdate.CheckFile,

  就会在根目录下得到一个com_hode_hodeframework_modelupdate_CheckFile.h的文件

  然后根据头文件的内容编写com_hode_hodeframework_modelupdate_CheckFile.c文件

  #include "CheckFile.h"

  #include

  #include

  JNIEXPORT void JNICALL Java_com_hode_hodeframework_modelupdate_CheckFile_displayHelloWorld(JNIEnv *env, jobject obj)

  {

  printf("Hello world!\n");

  return;

  }

  之后编译生成DLL文件如“test.dll”,名称与System.loadLibrary("test")中的名称一致

   vc的编译方法:cl -I%java_home%\include -I%java_home%\include\win32 -LD com_hode_hodeframework_modelupdate_CheckFile.c -Fetest.dll

  最后在运行时加参数-Djava.library.path=[dll存放的路径]

评分

参与人数 1技术分 +1 收起 理由
菜小徐 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马