python ctypes 无法调用C静态全局变量 但是可以调用全局变量这是我试验了很久得出的结论
经过试验发现python中调用的全局变量地址和在调用动态库中c函数时所打印出的全局变量的地址是同一个,说明可以通过操作地址修改内容
至于如何修改库中全局变量的值也是我千辛万苦找出来的一个关键函数memset
生成动态链接库会吧不会看我写的这篇:
https://blog.csdn.net/nb_zsy/article/details/104587112
话不多说 直接上代码
测试脚本:
.c
#include<stdio.h>
#include "try.h"
typedef struct myStruct
{
int a;
int b;
}my_struct;
static my_struct *myGloable = NULL;
int* get_address()
{
return &myGloable;
}
int changeMyGloable()
{
printf("myGloable\n");
printf("%ld",&myGloable);
if(myGloable == 0)
{
printf("changeErr\n");
return -1;
}
else
{
printf("changeSuccess\n");
return 1;
}
}
.h
#ifndef TRY_H_
#define TRY_H_
#include<stdio.h>
int changeMyGloable();
#endif
python脚本
# coding=UTF-8
import ctypes
from ctypes import*
libc = cdll.LoadLibrary("/mnt/hgfs/u18share/libmyshare.so")
#
libc.printf("%ld",libc.myGloable)
#get_value=ctypes.cast(id(libc.myGloable),ctypes.py_object).value
ibc.printf("%d",get_value)
ctypes.memset(libc.myGloable,1,1)
libc.printf("%ld",libc.get_address())
libc.changeMyGloable()
有啥问题可以问