62,634
社区成员




package com;
import com.sun.jna.*;
public class wp_demo
{
public static class AAA extends Structure{
public static class ByReference extends AAA implements Structure.ByReference {}
int a;
int b;
}
public static void main(String[] args)
{
AAA etherDevice = new AAA();
//
}
}
public static class AAA extends Structure{
public static class ByReference extends AAA implements Structure.ByReference {}
int a;
int b;
}
改成
public static class AAA extends Structure{
public static class ByReference extends AAA implements Structure.ByReference{}
public int a;
public int b;
}