码迷,mamicode.com
首页 >  
搜索关键字:comment    ( 4550个结果
获取系统进程信息和进程依赖的dll信息
获取系统进程信息和进程依赖的dll信息 #include "stdafx.h" #include #include #include #include #pragma comment(lib, "psapi.lib") int _tmain(int argc, _TCHAR* argv[]) { P...
分类:系统相关   时间:2015-03-13 17:56:42    阅读次数:168
meterpreter源码
/* by codeliker @2014.12.08 github: https://github.com/codeliker*/#include #include #pragma comment(lib,"WS2_32.lib")int main(int argc,char** argv){ /...
分类:其他好文   时间:2015-03-12 19:04:06    阅读次数:137
InstallShield2008脚本安装制作方法Setup
//===========================================================================////FileName:Setup.rul////Description:Blanksetupmainscriptfile////Comment...
分类:其他好文   时间:2015-03-12 09:41:37    阅读次数:321
域名解析成IP地址C++
#include #include #include #pragma comment(lib, "ws2_32")#include #includeusing namespace std;void main(){int WSA_return;WSADATA WSAData;WSA_return=WS...
分类:编程语言   时间:2015-03-11 19:08:48    阅读次数:166
React 篇 Comment Model
Model 原型 Comment Box Comments React中,可以定义类似的模型在这里我们可以看到我们熟悉的模型,例如 div h1,但是也能看到我们自定义的CommentList CommentForm.而对于这个CommentList呢,自己又需要重新定...
分类:其他好文   时间:2015-03-11 16:56:08    阅读次数:113
在Java中正确使用注释
Java提供了3种类型的注释:单行注释(C++风格)在Java中最简单的注释是单行注释。它以两个正斜杠开始并到行尾结束。例如:// this is a single-line commentx = 1; // a single-line comment after code多行注释(C风格)Java...
分类:编程语言   时间:2015-03-11 14:31:42    阅读次数:159
linux命令useradd添加用户详解
1.作用useradd或adduser命令用来建立用户帐号和创建用户的起始目录,使用权限是超级用户。 2.格式 useradd [-d home] [-s shell] [-c comment] [-m [-k template]] [-f inactive] [-e expire ] [-p .....
分类:系统相关   时间:2015-03-09 22:21:56    阅读次数:231
[JAVA]基本的数据集分析技巧
抽取信息并统计,排序任务是对语料进行预处理,对1000个问题的答案和回复进行抽取有用信息并统计。首先,分析文本内容、格式,思考如何抽取。文件有三种类型answer、comment、vote,因此在开始时根据前面几个字符先判断文件类型。接着根据需求构造对象和方法,并构造对象list来存储抽取出来的信息...
分类:编程语言   时间:2015-03-09 22:15:44    阅读次数:148
Lintcode: Longest Common Subsequence
Given two strings, find the longest comment subsequence (LCS).Your code should return the length of LCS.ExampleFor "ABCD" and "EDCA", the LCS is "A" (...
分类:其他好文   时间:2015-03-09 09:20:00    阅读次数:141
ZOJ2971 Give Me the Number 【模拟】
这道题目使用Map。 然后一次性遍历下来即可。 QAQ注意初始化的时候小心点不要错..Source Code://#pragma comment(linker, "/STACK:16777216") //for c++ Compiler#include #include #include #incl...
分类:其他好文   时间:2015-03-08 21:23:54    阅读次数:134
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!