Search:

Type: Posts; User: MMD

Search: Search took 0.09 seconds.

  1. How to get java object array elements by Assembly (Microsoft VS2010)

    I tried to add a native java method in Openjdk 7; I built the Openjdk 7 over windows XP using Microsoft VS2010.

    Before adding the method in Openjdk I tried it in Microsoft VS2010 as follow:
    The...
  2. Replies
    2
    Views
    953

    How to modify System.arraycopy ?

    public static native void arraycopy(Object src, int src_position,
    Object dst, int dst_position,
    int length);
    ...
  3. Replies
    7
    Views
    2,093

    Re: add and increment array elements by arraycopy

    I tried with JNI (Java Native Interface) but no improvement !!!!!
  4. Replies
    7
    Views
    2,093

    Re: add and increment array elements by arraycopy

    I need to add the new element and increment the other objects of an array of objects (elemt) simultaneously with a faster time.





    public class elemt {

    public int x;
    ...
  5. Replies
    7
    Views
    2,093

    add and increment array elements by arraycopy

    suppose an array of object: Element T[ ] , each object contains two integer variables (x,y).

    T = (1,1) (2,2) (3,3) (4,4)
    I want to increment the value of the variable x of object each time a new...
Results 1 to 5 of 5