python-Cython直接访问全局变量
作者:互联网
如何在不使用访问器函数的情况下访问用Cython声明的全局变量?
我尝试了以下示例:
pyfunktionen_a.pyx
import numpy as np
cdef extern from "funktionen_a.h":
cdef void setValue(int value_to_set)
cdef int readValue()
cdef int value
def pysetValue (_value):
setValue(_value)
def pyreadValue():
print readValue()
def manipulateValue(value_to_set):
value = value_to_set
funktionen_a.c
#include "funktionen_a.h"
void setValue(int value_to_set){
value = value_to_set;
}
int readValue(){
return value;
}
funktionen_a.h
#include <Python.h>
#include <stdio.h>
void setValue(int value_to_set);
int readValue();
int value;
通过此功能,我可以控制整个过程:
控制
import pyfunktionen_a
pyfunktionen_a.pysetValue(8)
pyfunktionen_a.pyreadValue()
pyfunktionen_a.manipulateValue(5)
pyfunktionen_a.pyreadValue()
我期望什么结果:
>> 8
>> 5
但是我得到什么结果:
>> 8
>> 8
解决方法:
您可以尝试使用:
def manipulateValue(value_to_set):
global value
value = value_to_set
否则,value将是此函数中的局部变量.
该链接可能是有用的:https://github.com/cython/cython/wiki/FAQ#id34
标签:variables,cython,global,python 来源: https://codeday.me/bug/20191121/2051820.html