MCPcopy Create free account
hub / github.com/java-native-access/jna / getChar

Method getChar

src/com/sun/jna/Pointer.java:555–557  ·  view source on GitHub ↗

Indirect the native pointer as a pointer to wchar_t . This is equivalent to the expression ((wchar_t )((char )Pointer + offset)) . @param offset offset from pointer to perform the indirection @return the wchar_t value being pointed to

(long offset)

Source from the content-addressed store, hash-verified

553 * @return the <code>wchar_t</code> value being pointed to
554 */
555 public char getChar(long offset) {
556 return Native.getChar(this, this.peer, offset);
557 }
558
559 /**
560 * Indirect the native pointer as a pointer to <code>short</code>. This is

Callers 1

getValueMethod · 0.95

Calls 1

getCharMethod · 0.95

Tested by

no test coverage detected