本文整理汇总了Java中com.sun.jna.Native.LONG_SIZE属性的典型用法代码示例。如果您正苦于以下问题:Java Native.LONG_SIZE属性的具体用法?Java Native.LONG_SIZE怎么用?Java Native.LONG_SIZE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.sun.jna.Native
的用法示例。
在下文中一共展示了Native.LONG_SIZE属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: MachPortTRef
/**
* Creates a new {@link MachPortTRef}. If you're going to use this instance
* as an argument that returns a value, set {@code allocate} to {@code true}.
*
* @param allocate Whether to allocate {@link Memory} for the internal
* {@link Pointer} or not. If {@code false} the internal
* {@link Pointer} is set to {@code null}.
*/
public MachPortTRef(boolean allocate) {
super(allocate ? new Memory(Native.LONG_SIZE) : Pointer.NULL);
}
示例2: CFTypeRef
/**
* Creates a new instance and allocates memory for the internal
* {@link Pointer}.
*/
public CFTypeRef() {
super(new Memory(Native.LONG_SIZE));
}
示例3: LONG
public LONG(long value) { super(Native.LONG_SIZE, value); }