- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
全部。下面有一个 Cython 代码示例,其中有一个无符号字符数组,a
填充有无符号整数。当我将此数组传递给 Python def
方法时,包含 0 的索引之后的任何索引的值都会变得困惑。
在此示例中,由于 0 值位于第 6 个索引处,因此传递到 __cinit__()
方法的数组中的所有后续数组索引都有不正确的值。对于 __init__()
方法或使用 Python 声明 def
的任何函数或方法,也会发生此行为。
但是,当数组传递到任何 cdef
或 cpdef
函数或方法时,数组的值是正确的。
所以,我有两个问题(请注意,我使用的是 .pyx 运行程序文件):
__cinit__()
方法中?还有其他方法吗?def __cinit__()
方法?当然,我可以使用解决方法并使用 cdef
或 cpdef
方法,特别是对于我展示的这个简单的小示例,但我想了解是否有换一种方式...代码:
cdef class Classical:
def __cinit__(self, unsigned char *b):
for x in range(0, 12):
print b[x], " init" # This does not work
cdef void bar(self, unsigned char *b):
for x in range(0, 12):
print b[x], " method" # This works fine
def foo(unsigned char *b):
for x in range(0, 12):
print b[x], " function" # This does not work either
cdef unsigned char a[12]
a = [
83,
12,
85,
31,
7,
0,
91,
11,
0,
12,
77,
100
]
Classical(a).bar(a)
foo(a)
输出:
83 init
12 init
85 init
31 init
7 init
0 init
0 init
0 init
0 init
0 init
0 init
0 init
83 method
12 method
85 method
31 method
7 method
0 method
91 method
11 method
0 method
12 method
77 method
100 method
83 function
12 function
85 function
31 function
7 function
0 function
100 function
0 function
0 function
0 function
0 function
0 function
最佳答案
def 函数的所有参数都是 Python 对象。一个char *
( unsigned char *
也是如此)不是 Python 对象,但是可以自动将(某些)Python 对象转换为 char *
。所以
def foo(char *x):
...
对于 Cython 来说意味着:检查传递的 Python 对象是否可以转换为 cdef char *
,执行转换并在函数体中使用此转换的结果。
当使用 char *
调用 def 函数时(另请参阅此有点相关的 SO-post )作为参数:
cdef char a[12]
....
bar(a) # a decays to char *
Cython 执行以下操作:使用 char *
的自动转换假设它是一个以 null 结尾的 c 字符串到一个字节对象,并将这个临时字节对象传递给 def
-功能bar
.
这意味着在你的情况下:
foo(a)
创建一个长度为 5 的临时字节对象(而不是 12,因为第 6 个元素是 0
),前 5 个字符将被复制到其中。foo
该字节对象缓冲区的地址被用作 unsigned char *b
,现在只有 6 个元素(包括尾随 \0
),因此可以通过 b[6]
访问它是未定义的行为,可能会导致段错误。您可以验证a
和b
通过指向不同的地址
print("Address:", <unsigned long long>(&a[0])) # or &b[0]
所以问题实际上是,当你调用 foo
时不是整个数组都转换为临时bytes
-目的。从/到 char *
的转换Cython-documentation 中描述。在您的情况下,调用应该是:
foo(a[:12]) #pass the length explicitly, so cython doesn't have to depend on '\0'
现在打印以下内容:
83 function
12 function
85 function
31 function
7 function
0 function
91 function
11 function
0 function
12 function
77 function
100 function
<小时/>
cdef
的情况有所不同-函数,其中 char *
停留char *
并且不会转换为 Python 对象。然而,__cinit__
必须是def
函数,因此在这种情况下通常是 cdef
- 使用工厂函数,如the answer pointed out by @DavidW ,例如:
cdef class Classical:
...
@staticmethod
cdef Classical create(char* ptr):
obj = <Classical>Classical.__new__(Classical) # __init__ isn't called!
# set up obj while using ptr
...
return obj
显然,Classical.create
只能从 Cython 代码中使用,但另一方面,只有 Cython 代码才有指针!
关于python - Cython - 替换 def __init__() 方法,因为 Cython 的 Python 函数和方法无法处理值为 0 的无符号字符数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59260575/
为什么正是是 A.__init__() B.__init__() D.__init__() 由以下代码打印?特别是: 为什么是C.__init__() 未打印? 为什么是C.__init__()如果我
目前我有这样的事情: @dataclass(frozen=True) class MyClass: a: str b: str c: str d: Dict[str, str] ...
我正在尝试从父类继承属性: class Human: def __init__(self,name,date_of_birth,gender,nationality): self.name =
如何扩展基类的 __init__,添加更多要解析的参数,而不需要 super().__init__(foo, bar) 在每个派生类中? class Ipsum: """ A base ips
这是我试图解决的一个非常简单的例子: class Test(object): some_dict = {Test: True} 问题是我无法在 Test 仍在定义时引用它 通常,我会这样做:
我在 Objective-C 中使用过这个结构: - (void)init { if (self = [super init]) { // init class }
我有一个类层次结构,其中 class Base 中的 __init__ 执行一些预初始化,然后调用方法 calculate。 calculate 方法在 class Base 中定义,但预计会在派生类
这是我在多种语言中都怀念的一个特性,想知道是否有人知道如何在 Python 中完成它。 我的想法是我有一个基类: class Base(object): def __init__(self):
我正在对 threading.Thread 类进行子类化,它目前看起来像这样: class MyThread(threading.Thread): def __init__(self:
我正在用 cython 写一些代码,我有一些 "Packages “within” modules" . — 这实际上是对我在那里的问题的跟进,结构应该是一样的。问题是这是 cython,所以我处理的
class AppendiveDict(c.OrderedDict): def __init__(self,func,*args): c.OrderedDict.__init_
看完this回答,我明白 __init__ 之外的变量由类的所有实例和 __init__ 内的变量共享每个实例都是唯一的。 我想使用所有实例共享的变量,随机给我的类实例一个唯一的参数。这是我尝试过的较
在下面的代码中: import tkinter as tk class CardShuffling(tk.Tk): background_colour = '#D3D3D3'
我正在覆盖类的 __new__() 方法以返回具有特定 __init__() 集的类实例。 Python 似乎调用类提供的 __init__() 方法而不是特定于实例的方法,尽管 Python 文档在
从内置类型和其他类派生时,内置类型的构造函数似乎没有调用父类(super class)构造函数。这会导致 __init__ 方法不会被 MRO 中内置函数之后的类型调用。 例子: class A:
答: super( BasicElement, self ).__init__() 乙: super( BasicElement, self ).__init__( self ) A 和 B 有什么区
class A(object): def __init__(self): print('A.__init__()') class D(A): def __init__(
到目前为止我已经成功地做了什么: 我创建了一个 elem 类来表示 html 元素(div、html、span、body 等)。 我可以像这样派生这个类来为每个元素创建子类: class elem:
我一直在努力理解 super() 在多重继承的上下文中的行为。我很困惑为什么在 test2.py 的父类中调用 super() 会导致为父类调用 __init__()? test1.py #!/usr
为什么我在 Python 代码中看不到以下内容? class A: def __init__(self, ...): # something important class B
我是一名优秀的程序员,十分优秀!