大约有 1,135 项符合查询结果(耗时:0.0161秒) [XML]

https://bbs.tsingfun.com/thread-550-1-1.html 

JS卷动效果的调用函数:startmarquee - 建站技术 - 清泛IT论坛,有思想、有深度

... jquery.sgallery.js function startmarquee(lh,speed,delay,index) { /* 函数startmarquee的参数: lh:文字一次向上滚动的距离或高度; speed:滚动速度; delay:滚动停顿的时间间隔; index:可以使封装后的函数应用于页面当中不同的元素; ...
https://bbs.tsingfun.com/thread-744-1-1.html 

warning C4996 - c++1y / stl - 清泛IT社区,为创新赋能!

...现这样的警告,是因为VC2005之后的版本中认为CRT中的一组函数如果使用不当,可能会产生诸如内存泄露、缓冲区溢出、非法访问等安全问题。这些函数如:strcpy、strcat等。对于这些问题,VC2005建议使用这些函数的更高级的安全版...
https://www.tsingfun.com/it/cpp/2234.html 

计算统计特征(正态分布)函数及实例 - C/C++ - 清泛网 - 专注C/C++及内核技术

计算统计特征(正态分布)函数及实例main函数:#include "stdafx.h"#include "stdev.h"#include <map>int _tmain(int argc, _TCHAR* argv[]){std::map<int, int> map_...main函数: #include "stdafx.h" #include "stdev.h" #include <map> int _tmain(int argc, _TCHAR* argv[]) { std:...
https://bbs.tsingfun.com/thread-902-1-1.html 

CDC:DrawText 多行显示文本(文本自动换行) - C++ UI - 清泛IT社区,为创新赋能!

...mp;rect, DT_LEFT | DT_TOP | DT_WORDBREAK | DT_EDITCONTROL, m_pfSongTi); 函数原型: int DrawText( &nbsp; &nbsp; HDC hDC,&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; // handle to DC &nbsp; &nbsp; LPCTSTR lpString, // text to draw &nbsp; &nbsp; int nCount,&nbsp; &nbsp;&nbsp; &nbsp; // text length &n...
https://www.tsingfun.com/it/os_kernel/2261.html 

BIO与NIO、AIO的区别(这个容易理解) - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术

...解为,read/write方法都是异步的,完成后会主动调用回调函数。 在JDK1.7中,这部分内容被称作NIO.2,主要在Java.nio.channels包下增加了下面四个异步通道: AsynchronousSocketChannel AsynchronousServerSocketChannel AsynchronousFileChannel Asynchronous...
https://www.tsingfun.com/it/cpp/1209.html 

MFC CString::Format()函数详解 - C/C++ - 清泛网 - 专注C/C++及内核技术

MFC CString::Format()函数详解我在编写程序时经常会使用CString::Format()来格式化字符串!但往往只是使用了Format很少一部分功能,比如整型转换成字符串!不过今天我想...我在编写程序时经常会使用CString::Format()来格式化字符串!但...
https://www.tsingfun.com/it/cpp/1508.html 

xtree(1796): warning C4800: “int”: 将值强制为布尔值“true”或“false...

...crosoft Visual Studio 11.0\VC\include\xtree(1775): 参见对正在编译的函数 模板 实例化“std::pair<_Ty1,_Ty2> std::_Tree<_Traits>::_Insert_nohint<std::pair<const _Kty,_Ty>&,_Nodety>(bool,_Valty,_Nodety)”的引用 1> with 1> [ 1> _Ty1=std::_Tree_iterato...
https://www.tsingfun.com/it/os_kernel/658.html 

手握利器,直面“蓝脸”! ——使用WinDbg抗击系统崩溃 - 操作系统(内核) - ...

...系统检测到引发崩溃的致命错误时,Windows自己执行崩溃函数“KeBugCheckEx”。该函数接受一个停止代码(STOP Code,也称为错误检查码“Bug Check Code”),以及四个根据停止代码来解释的参数(下文中会有图例)。在调用KeBugCheckEx之后,...
https://www.tsingfun.com/it/cpp/653.html 

VS2005混合编译ARM汇编代码 - C/C++ - 清泛网 - 专注C/C++及内核技术

...半! 仔细的朋友可能也发现了,Larry Bank调用armtest.asm中函数的文件MAIN.C在VS2005编译时调用的是C编译器,但是现在很多项目工程会以C++代码编写(*.cpp),在VS2005中会用C++编译器Compile。 如果不注意这点的话,就会出现下面的结...
https://www.tsingfun.com/it/te... 

Android中Java和JavaScript交互 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...“javascript:methodName(parameterValues)”) 调用js无参无返回值函数 String call = "javascript:sayHello()"; webView.loadUrl(call); 调用js有参无返回值函数 注意对于字符串作为参数值需要进行转义双引号。 String call = "javascript:alertMessage(\"" ...