易截截图软件、单文件、免安装、纯绿色、仅160KB
热门标签: c c# c++ asp asp.net linux php jsp java vb Python Ruby mysql sql access Sqlite sqlserver delphi javascript Oracle ajax wap mssql html css flash flex dreamweaver xml
 最新文章 :

在VB中利用API进行串口通信


       一般来说,在VB中编写串口通讯程序,首先考虑到是使用MSComm控件,可是该控件不能设置超时,而且对许多内部的参数进行了隐藏,从而不能满足有些具体的工作。而使用API进行串口通信,大多是使用VC,很少见到完整的VB代码,为此,我编写了这个模块。
      同时,由于串口通信是基于字节流的,为方便程序设计,还编写了三个简单的辅助函数,并写了一个详细的测试代码。
      具体代码如下:
Option Explicit  
Option Base 0  
Private Declare Function CreateFile Lib "kernel32" Alias "CreateFileA" (ByVal lpFileName As String, ByVal dwDesiredAccess As Long, ByVal dwShareMode As Long, ByVal lpSecurityAttributes As Long, ByVal dwCreationDisposition As Long, ByVal dwFlagsAndAttributes As Long, ByVal hTemplateFile As Long) As Long
Private Declare Function ReadFile Lib "kernel32" (ByVal hFile As Long, lpBuffer As Any, ByVal nNumberOfBytesToRead As Long, lpNumberOfBytesRead As Long, ByVal lpOverlapped As Long) ......

Python数据结构之——tuple

      Tuple和List的功能相近,主要目的是用来存放一组对象。但是,它们有一个最大的不同点:Tuple是不可变的!
      对于元组的定义,可以使用小括号“()”来完成。对于其中的元素,需要使用逗号分隔。需要注意的一点是:定义元组时,小括号是可选的!但是为了防止产生歧义,强烈推荐在定义元组时使用小括号。定义元组的示例如下:
      tup = ('one','two','three')
      对于元组的定义,有两种情况需要注意:元组中的元素数量为0或1时。定义一个元素数为0的元组:zero_tup = ()。定义一个元素数为1的元组:one_item_tup = (1,)。对于一个元素的元组的定义,需要在元素后加一个逗号。原因在于如果没有括号,就会和改变运算优先级的括号产生歧义。
      对于元组的访问,可以使用像数组一样,使用索引来完成:
      print(tup[1]
#结果是:two

      需要注意的是,在Python中,下表都是从0开始的。
      元组还有另外 ......

Python数据结构之——set

      Set是简单对象的无需集合。在set中,没有重复元素。通常在对集合中元素的顺序和出现的次数没有什么要求时使用。对于set,有一些函数可以帮助求解set之间的关系,例如:包含关系,交集关系等。
      定义一个set:s = set([1,2,3,4])。使用set函数来定义一个set。注意,set中没有充分元素,如果定义set时其中包含重复元素,那该元素也仅会出现一次。
      可以使用in关键字来判定某个对象是否属于一个set:
      s = set([1,2,3])
print(1 in s)
#False
      可以使用copy函数来拷贝一个set:
      old_set = set([1,2,3])
new_set = old_set.copy()
      可以使用add和remove来向set中添加或删除元素:
      s = set([1,2,3])
s.add(4)
s.remove(1)
print(s)
#{2,3,4}
      可以使用&、|求两个set的交集、并集:
      s1 = set([1,2,3])
s2 = set([2,4])
......

python socket server 并发(转)

import SocketServer, time, select, sys
from threading import Thread
COMMAND_HELLO = 1
COMMAND_QUIT = 2
# The SimpleRequestHandler class uses this to parse command lines.
class SimpleCommandProcessor:
    def __init__(self):
        pass
    def process(self, line, request):
        """Process a command"""
        args = line.split(' ')
        command = args[0].lower()
        args = args[1:]
        if command == 'hello':
            request.send('HELLO TO YOU TO!\n\r')
            return COMMAND_HELLO
        elif command == 'quit':
         &nb ......

发个在linux下用python写守护进程的好东东(转)

 一个别人写的模块,可以直接用来把一个普通进程改为守护进程。
并且自动把标准输出重定向到日志文件,很实用啊。
view plaincopy to clipboardprint?
<BR>   
'''''<BR>  
    This module is used to fork the current process into a daemon.<BR>  
    Almost none of this is necessary (or advisable) if your daemon <BR>  
    is being started by inetd. In that case, stdin, stdout and stderr are <BR>  
    all set up for you to refer to the network connection, and the fork()s <BR>  
    and session manipulation should not be done (to avoid&n ......

发个在linux下用python写守护进程的好东东(转)

 一个别人写的模块,可以直接用来把一个普通进程改为守护进程。
并且自动把标准输出重定向到日志文件,很实用啊。
view plaincopy to clipboardprint?
<BR>   
'''''<BR>  
    This module is used to fork the current process into a daemon.<BR>  
    Almost none of this is necessary (or advisable) if your daemon <BR>  
    is being started by inetd. In that case, stdin, stdout and stderr are <BR>  
    all set up for you to refer to the network connection, and the fork()s <BR>  
    and session manipulation should not be done (to avoid&n ......
总记录数:40319; 总页数:6720; 每页6 条; 首页 上一页 [6710] [6711] [6712] [6713] 6714 [6715] [6716] [6717] [6718] [6719]  下一页 尾页
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号