虫虫首页|资源下载|资源专辑|精品软件
登录|注册

CLOSE

  • WinSock Win32 API 的打包类和例子程序 < WinSock > winSocket/winSocketEx: 如果你正在Windows环境中用C++编写TCP/I

    WinSock Win32 API 的打包类和例子程序 < WinSock > winSocket/winSocketEx: 如果你正在Windows环境中用C++编写TCP/IP网络程序,那么使用这个打包类吧,我想它不会让你失望的。winSocket几乎封装了编写TCP/IP网络应用程序所需的所有内容,winSocketEx加入了对SOCKS 4/5代理服务器的支持。使得在自己的程序中加入代理支持易如反掌。这个打包类支持的特性包括:Connect、Send、Receive、CLOSE、Listen、Bind、Accept、asyncSelect、get_LocalHost、get_LocalPort、get_RemoteHost、get_RemotePort等等。 [代码性质] VC可重用代码段 [代码作者] ryan [文件大小] 53K 声明:转自其他网站

    标签: WinSock winSocketEx winSocket Windows

    上传时间: 2014-12-01

    上传用户:youke111

  • 一、目的要求 1、用高级语言编写和调试一个简单的文件系统

    一、目的要求 1、用高级语言编写和调试一个简单的文件系统,模拟文件管理的工作过程。从而对各种文件操作命令的实质内容和执行过程有比较深入的了解。 2、要求设计一个 n个用户的文件系统,每次用户可保存m个文件,用户在一次运行中只能打开一个文件,对文件必须设置保护措施,且至少有Create、delete、open、CLOSE、read、write等命令。

    标签: 高级语言 编写 文件系统 调试

    上传时间: 2014-10-10

    上传用户:fredguo

  • 单片机操作MMC/SD卡读写fat12/16/32文件系统的程序

    单片机操作MMC/SD卡读写fat12/16/32文件系统的程序,外国网站找到的,支持文件open,read write mkdir CLOSE 等,基本pc文件功能都支持,专门针对8位mcu,方便移植到各种单片机系统,占用资源很少

    标签: fat 12 16 32

    上传时间: 2016-03-24

    上传用户:yuanyuan123

  • ET++ is a portable and homogenous object-oriented class library integrating user interface building

    ET++ is a portable and homogenous object-oriented class library integrating user interface building blocks, basic data structures, and high level application framework components. ET++ eases the building of highly interactive applications with consistent user interfaces following the direct manipulation principle. The ET++ class library is implemented in C++ and can be used on several operating systems and window system platforms. Since its initial conception the class library has been continuously redesigned and improved. It started with an architecture which was CLOSE to MacApp. During several iterations a new and unique architecture evolved. A byproduct of the ET++ project is a set of tools, which were designed to support the exploration of ET++ applications at run-time. 设计模式一书引用的主要参考例程,一个跨平台的应用框架,基于C++实现,是学习面向对象的经典源码.

    标签: object-oriented integrating homogenous interface

    上传时间: 2016-04-15

    上传用户:tedo811

  • The last step in training phase is refinement of the clusters found above. Although DynamicClusteri

    The last step in training phase is refinement of the clusters found above. Although DynamicClustering counters all the basic k-means disadvantages, setting the intra-cluster similarity r may require experimentation. Also, a cluster may have a lot in common with another, i.e., sequences assigned to it are as CLOSE to it as they are to another cluster. There may also be denser sub-clusters within the larger ones.

    标签: DynamicClusteri refinement Although clusters

    上传时间: 2014-01-04

    上传用户:watch100

  • 看n2实例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows

    看n2实例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows #$ns color 1 Blue #$ns color 2 Red #Open the nam trace file set nf [open out-1.nam w] $ns namtrace-all $nf set f0 [open out0.tr w] set f1 [open out1.tr w] #Define a finish procedure proc finish {} { global ns nf $ns flush-trace #CLOSE the trace file CLOSE $nf #Execute nam on the trace file exit 0 } #Create four nodes set n0 [$ns node] set n1 [$ns node] set n2 [$ns node] set n3 [$ns node] #Create links between the nodes $ns duplex-link $n0 $n2 1Mb 10ms

    标签: simulator Simulator different Create

    上传时间: 2016-07-02

    上传用户:wfl_yy

  • 主要源码: void CFDlg::OnChangeEdit1() { UpdateData() m_strExt.MakeUpper() m_list.ResetConte

    主要源码: void CFDlg::OnChangeEdit1() { UpdateData() m_strExt.MakeUpper() m_list.ResetContent() if(m_strExt.GetLength()==0) return CStdioFile sf if(sf.Open("FileExt.txt",Cfile::modeRead)) { CString strTemp,strOut while(sf.ReadString(strTemp)) { if(strTemp.Left(m_strExt.GetLength()) ==m_strExt) { m_list.AddString(strTemp) } } } sf.CLOSE() m_list.SetCurSel(0) this->OnSelchangeList2() } void CFDlg::OnSelchangeList2() { CString strTemp,strExt m_list.GetText(m_list.GetCurSel(),strTemp) strExt=strTemp.Left(strTemp.FindOneOf(" ")) //MessageBox(strExt) CString strFileName ="eee."+strExt //MessageBox(strFileName) SHFILEINFO shfi memset(&shfi,0,sizeof(shfi)) //或者ZeroMemory(&shfi,sizeof(shfi)) ::SHGetFileInfo(strFileName, FILE_ATTRIBUTE_NORMAL, &shfi, sizeof(shfi), SHGFI_ICON|SHGFI_USEFILEATTRIBUTES) m_icon.SetIcon(shfi.hIcon) }

    标签: OnChangeEdit1 UpdateData ResetConte MakeUpper

    上传时间: 2013-12-20

    上传用户:zl5712176

  • 为LINUX设计一个简单的二级文件系统。要求做到以下几点: 1、 可以实现下列几条命令 Login 用户登录 Dir 列文件目录 Create 创建文件 Delete 删除文件 Open

    为LINUX设计一个简单的二级文件系统。要求做到以下几点: 1、 可以实现下列几条命令 Login 用户登录 Dir 列文件目录 Create 创建文件 Delete 删除文件 Open 打开文件 CLOSE 关闭文件 Read 读文件 Write 写文件 2、列目录时要列出文件名、物理地址、保护码和文件长度。 3、源文件可以进行读写保护。

    标签: Create Delete LINUX Login

    上传时间: 2016-07-16

    上传用户:jeffery

  • socket编程原理:UNIX系统的I/O命令集

    socket编程原理:UNIX系统的I/O命令集,是从Maltics和早期系统中的命令演变出来的,其模式为打开一读/写一关闭(open-write-read- CLOSE)。在一个用户进程进行I/O操作时,它首先调用“打开”获得对指定文件或设备的使用权,并返回称为文件描述符的整型数

    标签: socket UNIX 编程

    上传时间: 2016-08-12

    上传用户:懒龙1988

  • pl/sql的综合运用上例用到的oracle里关于游标的几个内置函数:%isopen,%notfound,%rowcount。 隐式游标更多用在for loop中

    pl/sql的综合运用上例用到的oracle里关于游标的几个内置函数:%isopen,%notfound,%rowcount。 隐式游标更多用在for loop中,你不用再手工去open,fetch或是CLOSE游标,非常方便

    标签: notfound rowcount oracle isopen

    上传时间: 2013-12-19

    上传用户:ikemada