當前位置: 首頁>>代碼示例>>Python>>正文


Python c_bool._type_方法代碼示例

本文整理匯總了Python中ctypes.c_bool._type_方法的典型用法代碼示例。如果您正苦於以下問題:Python c_bool._type_方法的具體用法?Python c_bool._type_怎麽用?Python c_bool._type_使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ctypes.c_bool的用法示例。


在下文中一共展示了c_bool._type_方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: valid_ranges

# 需要導入模塊: from ctypes import c_bool [as 別名]
# 或者: from ctypes.c_bool import _type_ [as 別名]
def valid_ranges(*types):
    # given a sequence of numeric types, collect their _type_
    # attribute, which is a single format character compatible with
    # the struct module, use the struct module to calculate the
    # minimum and maximum value allowed for this format.
    # Returns a list of (min, max) values.
    result = []
    for t in types:
        fmt = t._type_
        size = struct.calcsize(fmt)
        a = struct.unpack(fmt, ("\x00"*32)[:size])[0]
        b = struct.unpack(fmt, ("\xFF"*32)[:size])[0]
        c = struct.unpack(fmt, ("\x7F"+"\x00"*32)[:size])[0]
        d = struct.unpack(fmt, ("\x80"+"\xFF"*32)[:size])[0]
        result.append((min(a, b, c, d), max(a, b, c, d)))
    return result 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:18,代碼來源:test_numbers.py

示例2: test_int_from_address

# 需要導入模塊: from ctypes import c_bool [as 別名]
# 或者: from ctypes.c_bool import _type_ [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

示例3: valid_ranges

# 需要導入模塊: from ctypes import c_bool [as 別名]
# 或者: from ctypes.c_bool import _type_ [as 別名]
def valid_ranges(*types):
    # given a sequence of numeric types, collect their _type_
    # attribute, which is a single format character compatible with
    # the struct module, use the struct module to calculate the
    # minimum and maximum value allowed for this format.
    # Returns a list of (min, max) values.
    result = []
    for t in types:
        fmt = t._type_
        size = struct.calcsize(fmt)
        a = struct.unpack(fmt, (b"\x00"*32)[:size])[0]
        b = struct.unpack(fmt, (b"\xFF"*32)[:size])[0]
        c = struct.unpack(fmt, (b"\x7F"+b"\x00"*32)[:size])[0]
        d = struct.unpack(fmt, (b"\x80"+b"\xFF"*32)[:size])[0]
        result.append((min(a, b, c, d), max(a, b, c, d)))
    return result 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:18,代碼來源:test_numbers.py

示例4: test_sizes

# 需要導入模塊: from ctypes import c_bool [as 別名]
# 或者: from ctypes.c_bool import _type_ [as 別名]
def test_sizes(self):
        for t in signed_types + unsigned_types + float_types + bool_types:
            try:
                size = struct.calcsize(t._type_)
            except struct.error:
                continue
            # sizeof of the type...
            self.assertEqual(sizeof(t), size)
            # and sizeof of an instance
            self.assertEqual(sizeof(t()), size) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:12,代碼來源:test_numbers.py

示例5: test_alignments

# 需要導入模塊: from ctypes import c_bool [as 別名]
# 或者: from ctypes.c_bool import _type_ [as 別名]
def test_alignments(self):
        for t in signed_types + unsigned_types + float_types:
            code = t._type_ # the typecode
            align = struct.calcsize("c%c" % code) - struct.calcsize(code)

            # alignment of the type...
            self.assertEqual((code, alignment(t)),
                                 (code, align))
            # and alignment of an instance
            self.assertEqual((code, alignment(t())),
                                 (code, align)) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:13,代碼來源:test_numbers.py

示例6: test_float_from_address

# 需要導入模塊: from ctypes import c_bool [as 別名]
# 或者: from ctypes.c_bool import _type_ [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


注:本文中的ctypes.c_bool._type_方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。