com.esotericsoftware.kryo.util.Util.getDimensionCount()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(2.9k)|赞(0)|评价(0)|浏览(182)

本文整理了Java中com.esotericsoftware.kryo.util.Util.getDimensionCount()方法的一些代码示例,展示了Util.getDimensionCount()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.getDimensionCount()方法的具体详情如下:
包路径:com.esotericsoftware.kryo.util.Util
类名称:Util
方法名:getDimensionCount

Util.getDimensionCount介绍

[英]Returns the number of dimensions of an array.
[中]返回数组的维数。

代码示例

代码示例来源:origin: com.esotericsoftware.kryo/kryo

  1. /** Returns the class formatted as a string. The format varies depending on the type. */
  2. static public String className (Class type) {
  3. if (type.isArray()) {
  4. Class elementClass = getElementClass(type);
  5. StringBuilder buffer = new StringBuilder(16);
  6. for (int i = 0, n = getDimensionCount(type); i < n; i++)
  7. buffer.append("[]");
  8. return className(elementClass) + buffer;
  9. }
  10. if (type.isPrimitive() || type == Object.class || type == Boolean.class || type == Byte.class || type == Character.class
  11. || type == Short.class || type == Integer.class || type == Long.class || type == Float.class || type == Double.class
  12. || type == String.class) {
  13. return type.getSimpleName();
  14. }
  15. return type.getName();
  16. }

代码示例来源:origin: com.esotericsoftware/kryo

  1. /** Returns the class formatted as a string. The format varies depending on the type. */
  2. static public String className (Class type) {
  3. if (type.isArray()) {
  4. Class elementClass = getElementClass(type);
  5. StringBuilder buffer = new StringBuilder(16);
  6. for (int i = 0, n = getDimensionCount(type); i < n; i++)
  7. buffer.append("[]");
  8. return className(elementClass) + buffer;
  9. }
  10. if (type.isPrimitive() || type == Object.class || type == Boolean.class || type == Byte.class || type == Character.class
  11. || type == Short.class || type == Integer.class || type == Long.class || type == Float.class || type == Double.class
  12. || type == String.class) {
  13. return type.getSimpleName();
  14. }
  15. return type.getName();
  16. }

代码示例来源:origin: com.esotericsoftware/kryo-shaded

  1. /** Returns the class formatted as a string. The format varies depending on the type. */
  2. static public String className (Class type) {
  3. if (type.isArray()) {
  4. Class elementClass = getElementClass(type);
  5. StringBuilder buffer = new StringBuilder(16);
  6. for (int i = 0, n = getDimensionCount(type); i < n; i++)
  7. buffer.append("[]");
  8. return className(elementClass) + buffer;
  9. }
  10. if (type.isPrimitive() || type == Object.class || type == Boolean.class || type == Byte.class || type == Character.class
  11. || type == Short.class || type == Integer.class || type == Long.class || type == Float.class || type == Double.class
  12. || type == String.class) {
  13. return type.getSimpleName();
  14. }
  15. return type.getName();
  16. }

代码示例来源:origin: svn2github/kryo

  1. /** Returns the class formatted as a string. The format varies depending on the type. */
  2. static public String className (Class type) {
  3. if (type.isArray()) {
  4. Class elementClass = getElementClass(type);
  5. StringBuilder buffer = new StringBuilder(16);
  6. for (int i = 0, n = getDimensionCount(type); i < n; i++)
  7. buffer.append("[]");
  8. return className(elementClass) + buffer;
  9. }
  10. if (type.isPrimitive() || type == Object.class || type == Boolean.class || type == Byte.class || type == Character.class
  11. || type == Short.class || type == Integer.class || type == Long.class || type == Float.class || type == Double.class
  12. || type == String.class) {
  13. return type.getSimpleName();
  14. }
  15. return type.getName();
  16. }

相关文章