JNA以结构体数组为参数进行调用:
////// C++
// student 结构体定义
typedef struct
{
int age;
char name[20];
}Student;
// 修改java对象的属性值
JNAAPI bool changeObjs(Student stu[],int size)
{
for(int i=0;i<size;i++)
{
stu[i].age*=10;
strcpy(stu[i].name,"wokettas");
}
return true;
}
/////// Java
// JNA调用方法
Student[] stus=new Students[2];
Student s1=new Student();
Student s2=new Student();
s1.age=1;
s1.name=Arrays.copyOf("k1".getBytes(), 20);
s2.age=2;
s2.name=Arrays.copyOf("k2".getBytes(),20);
stus[0]=s1; //数组赋值
stus[1]=s2;
Gui.gui.changeObjs(stus, stus.length);
运行报错:
Structure array elements must use contiguous memory (bad backing address at Structure array index 1)
结构体数组必须使用连续的内存区域, 上例s1,s2都是new出来的新对象,不可能连续; 也就是说传统方式的初始化数组不能解决, 查询JNA api发现里面提供了:
toArray
public Structure[] toArray(int size)
Returns a view of this structure's memory as an array of structures. Note that this Structure
must have a public, no-arg constructor. If the structure is currently using a Memory
backing, the memory will be resized to fit the entire array.
修改后的代码:
// 测试对象数组
Student student=new Student();
Student[] stus=(Student[]) student.toArray(2); //分配大小为2的结构体数组
stus[0].age=1;
stus[0].name=Arrays.copyOf("k1".getBytes(), 20);
stus[1].age=2;
stus[1].name=Arrays.copyOf("k2".getBytes(),20);
Gui.gui.changeObjs(stus, stus.length);
分享到:
相关推荐
"dma-contiguous.rar_memory"这个压缩包文件可能包含的是关于Linux内核中连续内存分配器(Contiguous Memory Allocator)的源代码和头文件,用于DMA映射框架。 首先,我们来了解什么是连续内存。在DMA操作中,硬件...
c语言入门 c语言_leetcode题解525-contiguous-array.c
A one-dimensional array is a collection of elements of the same data type stored in contiguous memory locations. Each element is identified by an index or subscript. The syntax for declaring a one-...
contiguous()方法
在Linux中,内存管理涉及到多个层次和策略,包括页面回收、内存分配器、CMA(Contiguous Memory Area)、内存初始化以及固定映射等。 首先, `/proc/meminfo` 是一个用于查看系统内存状态的文件,它提供了关于系统...
2. **Arrays**: Arrays are a fundamental data structure that store elements in contiguous memory locations. This chapter covers how to use arrays effectively and efficiently in C++. 3. **Linked Lists*...
Contiguous_List.cpp
### PyTorch中contiguous()函数详解 #### 1. 背景 在深度学习领域,特别是使用PyTorch框架进行模型开发时,我们经常需要对张量(Tensor)进行各种各样的操作,比如切片(slicing)、视图(viewing)、扩展...
最大连续子序列和(Maximal Contiguous Subsequence Sum,简称MCSS)问题是一个经典的计算机科学问题,主要涉及算法设计和分析,尤其是动态规划和分治策略。在这个问题中,目标是从一个整数数组中找到一个子序列,...
Contiguous Frame Management)、进程地址空间(Process Address Space)、内存描述符(Memory Descriptors)、内存区域(Memory Regions)以及页面错误处理(Page Fault Handling)等关键概念。 分页是Linux内存...
标题"book3s_hv_cma.rar_memory"暗示了我们正在讨论的是一个针对PowerPC(ppc)平台的KVM(Kernel-based Virtual Machine)实现的连续内存分配器,它基于CMA(Contiguous Memory Allocator)并用于DMA(Direct ...
连续内存分配使用 Python 的连续内存分配器类 by I_Jemin ijemin.com 使用 Python 的连续内存分配器模拟类。 不包括接口或测试类。 您可以将 MemoryManager 类导入到您的界面类或 GUI 类中。
在IT领域, DMA(Direct Memory Access,直接内存访问)是一种技术,允许硬件设备如I/O控制器直接读取或写入系统内存,而无需CPU介入每一项数据传输。这极大地提高了数据传输效率,尤其是在大量数据传输时。在"DMA-...
0692_极智开发_解读pytorch contiguous函数
#### 非连续内存分配 (Non-Contiguous Memory Allocation) 非连续内存分配主要用于满足不能在物理内存中连续分配的要求。 - **函数: vmalloc** 分配非连续的虚拟内存。 - **函数: __vmalloc** 内部实现...
在IT领域,物理内存(Physical Memory)是计算机系统中用于存储数据和指令的实际硬件资源,它是计算机运行程序的基础。Linux操作系统对物理内存的管理是非常关键的一环,它涉及到系统的性能和稳定性。标题“cmb.rar_...
Consider:class Char_vec {intsz ;charelement [1];...Define new_char_vec() to allocate contiguous memory for a Char_vec object so that the elements can be indexed through element as shown.
连续内存分配(Contiguous Memory Allocation)是另一种早期的方法,其中每个进程都在物理内存中占据连续的空间,但这种方法存在碎片问题。 接着,我们讨论了分页(Paging)。分页是一种内存管理技术,它将内存划分...
顺序表是一种线性表,元素 stored in contiguous memory locations。顺序表的存储表示可以用以下结构体表示: typedef struct Sqlist{ ElemType *slist; // 存储空间的基地址 int length; // 表长度 int list...
### 子数组最大和问题(Maximal Contiguous Subsequent Sum Problem) #### 一、问题定义与背景 在计算机科学领域,子数组最大和问题(Maximal Contiguous Subsequent Sum Problem)是一个经典的问题,旨在从一个...