大约有 16,000 项符合查询结果(耗时:0.0239秒) [XML]
Linux Shell中 if else及大于、小于、等于逻辑表达式写法 - C/C++ - 清泛网...
...ho "OK"
else
echo "error $FILE" > error.log
mail -s "$FILE backup fail" test@tsingfun.com <error.log
fi
2、清除相关文件,并按时间段记录日志
#!/bin/sh
# 清除相关文件,并按时间段记录日志
#
DIR=/data/img_cache
DAY=`date +"%Y-%m-%d %H:%M"`
NUM=`ls $DIR |wc -...
WSAAsyncSelect模型 - C/C++ - 清泛网 - 专注C/C++及内核技术
...
代码如下:
新建一个基于MFC对话框的工程,工程名为test,然后在testDlg.h中定义
#include "winsock2.h"
#pragma comment(lib, "WS2_32")
#define WM_SOCKET (WM_USER+1)
同时在该文件中加入一个自定义消息处理函数
afx_msg LRESULT OnSocketMsg(WPARAM wPa...
更改MFC对话框默认的窗口类名 - C/C++ - 清泛网 - 专注C/C++及内核技术
...
PUSHBUTTON "Cancel",IDCANCEL,138,23,50,14
PUSHBUTTON "&Test!",IDC_BUTTON1,48,14,49,15
END
3. 定制并注册新窗口类。在应用程序类的InitInstance()函数中添加以下代码,以注册资源文件中用到的新窗口类:
WNDCLASS wc;
// 获取窗口类...
Windows下如何判断Win32 or x64? - C/C++ - 清泛网 - 专注C/C++及内核技术
...microsoft.com/en-us/library/ms684139(VS.85).aspx
/**
* This program test if this application is a x64 program or
* is a x86 program running under Windows x64.
*
* Version: 0.1 C-Lang
* Author: Fenying
* Date: 2013-08-22
*/
#include <windows.h>
#include <tchar.h>
typ...
VS Debug调试模式下内存泄露检测原理 - C/C++ - 清泛网 - 专注C/C++及内核技术
...存块号。
Detected memory leaks!
Dumping objects ->
d:\local\project\test.cpp(278) : {354} normal block at 0x003FDAB8, 44 bytes long.
Data: < P- P- > 80 00 E4 00 50 2D E5 00 50 2D E5 00 CD CD CD CD
Object dump complete.
如果内存块号比较稳定,可以调用_CrtSetBreakAllo...
ifstream 线程安全读文件 - C/C++ - 清泛网 - 专注C/C++及内核技术
... }
}
例子:
int main()
{
std::string path = "end_of_line_test.txt"
std::ifstream ifs(path.c_str());
if(!ifs) {
std::cout << "Failed to open the file." << std::endl;
return EXIT_FAILURE;
}
int n = 0;
std::string t;
while(safeGetlin...
Postfix日常维护队列管理 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...sa
测试spam:spamassassin -D --lint
测试maildrop:maildrop -V 10 -dtest@test.com
Postfix 维护 队列
优化InnerHTML操作 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...果使用标准DOM的话,完整代码如下:
<html>
<head>
<title>test</title>
</head>
<body>
<div>
<p>data<p>
</div>
<script>
document.onmousedown = function() {
for (var i = 0; i < 10; i++) {
var p = document.createElement("p");
p.appendChild(document.creat...
C# internal关键字的作用范围 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...名空间的,不受任何限制。
Common工程Config类internal属性Test,对非Common工程不可见:
internal修饰Config类,Common以外工程不可访问:
C# internal 关键字 范围
PHP获取图片颜色值的方法 - 更多技术 - 清泛网 - 专注C/C++及内核技术
...算实现的。
具体代码如下:
<?php
$i=imagecreatefromjpeg("test.jpg");//测试图片,自己定义一个,注意路径
for ($x=0;$x<imagesx($i);$x++) {
for ($y=0;$y<imagesy($i);$y++) {
$rgb = imagecolorat($i,$x,$y);
$r=($rgb >>16) & 0xFF;
$g=($rgb >> & 0xFF;
$...
