当前位置: 首页>>代码示例>>Python>>正文


Python c_char.from_address方法代码示例

本文整理汇总了Python中ctypes.c_char.from_address方法的典型用法代码示例。如果您正苦于以下问题:Python c_char.from_address方法的具体用法?Python c_char.from_address怎么用?Python c_char.from_address使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ctypes.c_char的用法示例。


在下文中一共展示了c_char.from_address方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_int_from_address

# 需要导入模块: from ctypes import c_char [as 别名]
# 或者: from ctypes.c_char import from_address [as 别名]
def test_int_from_address(self):
        from array import array
        for t in signed_types + unsigned_types:
            # the array module doesn't support all format codes
            # (no 'q' or 'Q')
            try:
                array(t._type_)
            except ValueError:
                continue
            a = array(t._type_, [100])

            # v now is an integer at an 'external' memory location
            v = t.from_address(a.buffer_info()[0])
            self.assertEqual(v.value, a[0])
            self.assertEqual(type(v), t)

            # changing the value at the memory location changes v's value also
            a[0] = 42
            self.assertEqual(v.value, a[0]) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:21,代码来源:test_numbers.py

示例2: test_char_from_address

# 需要导入模块: from ctypes import c_char [as 别名]
# 或者: from ctypes.c_char import from_address [as 别名]
def test_char_from_address(self):
        from ctypes import c_char
        from array import array

        a = array('c', 'x')
        v = c_char.from_address(a.buffer_info()[0])
        self.assertEqual(v.value, a[0])
        self.assertTrue(type(v) is c_char)

        a[0] = '?'
        self.assertEqual(v.value, a[0])

    # array does not support c_bool / 't'
    # def test_bool_from_address(self):
    #     from ctypes import c_bool
    #     from array import array
    #     a = array(c_bool._type_, [True])
    #     v = t.from_address(a.buffer_info()[0])
    #     self.assertEqual(v.value, a[0])
    #     self.assertEqual(type(v) is t)
    #     a[0] = False
    #     self.assertEqual(v.value, a[0])
    #     self.assertEqual(type(v) is t) 
开发者ID:dxwu,项目名称:BinderFilter,代码行数:25,代码来源:test_numbers.py

示例3: test_float_from_address

# 需要导入模块: from ctypes import c_char [as 别名]
# 或者: from ctypes.c_char import from_address [as 别名]
def test_float_from_address(self):
        from array import array
        for t in float_types:
            a = array(t._type_, [3.14])
            v = t.from_address(a.buffer_info()[0])
            self.assertEqual(v.value, a[0])
            self.assertIs(type(v), t)
            a[0] = 2.3456e17
            self.assertEqual(v.value, a[0])
            self.assertIs(type(v), t) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:12,代码来源:test_numbers.py

示例4: test_char_from_address

# 需要导入模块: from ctypes import c_char [as 别名]
# 或者: from ctypes.c_char import from_address [as 别名]
def test_char_from_address(self):
        from ctypes import c_char
        from array import array

        a = array('c', 'x')
        v = c_char.from_address(a.buffer_info()[0])
        self.assertEqual(v.value, a[0])
        self.assertIs(type(v), c_char)

        a[0] = '?'
        self.assertEqual(v.value, a[0])

    # array does not support c_bool / 't' 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:15,代码来源:test_numbers.py

示例5: test_bool_from_address

# 需要导入模块: from ctypes import c_char [as 别名]
# 或者: from ctypes.c_char import from_address [as 别名]
def test_bool_from_address(self):
        from ctypes import c_bool
        from array import array
        a = array(c_bool._type_, [True])
        v = t.from_address(a.buffer_info()[0])
        self.assertEqual(v.value, a[0])
        self.assertEqual(type(v) is t)
        a[0] = False
        self.assertEqual(v.value, a[0])
        self.assertEqual(type(v) is t) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:12,代码来源:test_numbers.py

示例6: test_float_from_address

# 需要导入模块: from ctypes import c_char [as 别名]
# 或者: from ctypes.c_char import from_address [as 别名]
def test_float_from_address(self):
        from array import array
        for t in float_types:
            a = array(t._type_, [3.14])
            v = t.from_address(a.buffer_info()[0])
            self.assertEqual(v.value, a[0])
            self.assertTrue(type(v) is t)
            a[0] = 2.3456e17
            self.assertEqual(v.value, a[0])
            self.assertTrue(type(v) is t) 
开发者ID:dxwu,项目名称:BinderFilter,代码行数:12,代码来源:test_numbers.py

示例7: test_char_from_address

# 需要导入模块: from ctypes import c_char [as 别名]
# 或者: from ctypes.c_char import from_address [as 别名]
def test_char_from_address(self):
        from ctypes import c_char
        from array import array

        a = array('b', [0])
        a[0] = ord('x')
        v = c_char.from_address(a.buffer_info()[0])
        self.assertEqual(v.value, b'x')
        self.assertIs(type(v), c_char)

        a[0] = ord('?')
        self.assertEqual(v.value, b'?')

    # array does not support c_bool / 't' 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:16,代码来源:test_numbers.py


注:本文中的ctypes.c_char.from_address方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。