Можно ли передать международный массив общему методу в Java?

Обычно при разработке проекта C ++ в режиме отладки.

Помимо окна памяти, у нас также есть автоматическое окно, локальное окно и окно наблюдения. Макет для меня выглядит следующим образом:

enter image description here [ 111]

Перетащите переменную в окно памяти, и вы можете получить память, к которой относится переменная, также с окружающей памятью. И для указателя, он также работает для автоматического ввода адреса в окно памяти.

Если это работает или нет, пожалуйста, дайте мне отзыв.

6
задан blank 25 April 2009 в 07:13
поделиться

5 ответов

Generics don't handle primitives in a consistent fashion. This is because Generics are not like templates in C++, it is just a compile time addition to a single class.

When generic are compiled, you end up with Object[] in the above example as the implementing type. As int[] and byte[] etc, do not extend Object[] you cannot use them inter-changeably even if the code involved would be identical (again generics are not templates)

The only class int[] and Object[] share is Object. You can write the above methods Object as the type (see System.arraycopy, Array.getLength, Array.get, Array.set)

9
ответ дан 8 December 2019 в 17:27
поделиться

Question 1: Casting arrays doesn't work like you expect. A String is an Object, but a String array isn't an Object array.

Try to use something like:

public static <T> T[] splitTop(T[] array, int index) {
    T[] result = Arrays.copyOfRange(array, index + 1, array.length);
    return result;
}

Question 2: For arrays of primitives my function obviously doesn't work either. There is no elegant solution to it - look at for example the Arrays library which have several copies of essentially the same method for each primitive array type.

1
ответ дан 8 December 2019 в 17:27
поделиться

Java does not allow the construction of generic arrays in a type-safe manner. Use a generic sequence type instead (such as java.util.List, for example).

Here's how I would write your test program, using a generic container class fj.data.Stream:

import fj.data.Stream;
import static fj.data.Stream.range;

// ...

public int[] intArray(Stream<Integer> s) {
  return s.toArray(Integer.class).array()
}

public static void main(String[] args) {
  Stream<Integer> integerStream = range(1, 10);
  print(intArray(integerStream));
  print(intArray(integerStream.take(3)));
  print(intArray(integerStream.drop(3)));

  // ...
}
1
ответ дан 8 December 2019 в 17:27
поделиться

1 Can i avoid the cast to T in splitBottom and splitTop? It doesn't feel right, or I'm going about this the wrong way (don't tell me to use python or something .. ;) )

Not only can you not avoid it, but you shouldn't do it. In Java, different types of arrays are actually different runtime types. An array that was created as an Object[] cannot be assigned to a variable of AnythingElse[]. The cast there will not fail immediately, because in generics the type T is erased, but later it will throw a ClassCastException when code tries it to use it as a Something[] as you promised them, but it is not.

The solution is to either use the Arrays.copyOf... methods in Java 6 and later, or if you are using an earlier version of Java, use Reflection to create the correct type of array. For example,

T[] result = (T[])Array.newInstance(array.getClass().getComponentType(), size);

2 Do I have to write seperate methods to deal with primitive arrays or is there a better solution?

It is probably best to write separate methods. In Java, arrays of primitive types are completely separate from arrays of reference types; and there is no nice way to work with both of them.

It is possible to use Reflection to deal with both at the same time. Reflection has Array.get() and Array.set() methods that will work on primitive arrays and reference arrays alike. However, you lose type safety by doing this as the only supertype of both primitive arrays and reference arrays is Object.

3
ответ дан 8 December 2019 в 17:27
поделиться

You've got two problems with what you are trying to accomplish.

First of all, you are trying to use primitive types, which do not actually inherit from Object. This will mess up things. If you really need to do this, explicitly use Integer rather than int, etc.

The second and greater problem is that Java generics have type erasure. This means that at runtime, you cannot actually refer to the type of the generic. This was done to allow you to mix generic-supporting and non generic-supporting code, and ended up (IMHO) being a major source of headache for Java developers and another proof that generics should have been in Java from day 1. I suggest you read the part in the tutorial about it, it will make this issue clearer.

0
ответ дан 8 December 2019 в 17:27
поделиться
Другие вопросы по тегам:

Похожие вопросы: