E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
C++Code
C/
C++code
知识点
求数组长度:sizeof(a)/sizeof(a[0])判断数字的位数:intcun(intn) { n=abs(n);//加上这一句话,可以判断负数了 if(n intn=5; doublex=pow(10.0,n);提取数的每一位数字:除以10取整(http://hi.baidu.com/fov42550564/blog/item/f3bbe5335db412fe1b4cffb0.html)字
rangf
·
2012-06-08 18:00
测试高亮,测试之用
C++Code
12345678910int Foo(bool isBar){ if (isBar) { bar(); return 1; } else
akof1314
·
2012-05-30 11:00
c
测试
null
border
make make clean make all make install的作用
2.makeclean删除源代码(C\
C++code
)生成的执行文件和所有的中间目标文件。
hh_linux
·
2012-05-29 16:05
的
源代码
include
make make clean make all make install的作用
2.makeclean删除源代码(C\
C++code
)生成的执行文件和所有的中间目标文件。
hh_linux
·
2012-05-29 16:05
源代码
include
clean
的
执行文件
数组奇偶分离算法,时间复杂度O(n),空间复杂度O(1)。
=
C++code
如下int*separate(int*iArray,intlength){ intfront=0; intback=length-1; while(front
Lamond_2010
·
2012-05-01 22:00
VC断点调试
C/
C++code
:f9——设置/取消断点f10——单步执行f11——比f10的步幅小f10在函数的调用时,直接跳过,在f11下,会进入函数体! f5——执行到下一个断点!
xiao__C
·
2012-04-24 22:00
汇编
database
dll
linux 的 sys_read 在哪里定义?
声明:syscalls.h asmlinkagelongsys_read(unsignedintfd,char__user*buf,size_tcount);定义: syscalls.hC/
C++code
junllee
·
2012-04-24 09:00
linux
struct
File
user
make make clean make all make install的作用
2.makeclean删除源代码(C\
C++code
)生成的执行文件和所有的中间目标文件。
nine123456
·
2012-04-01 18:55
Install
职场
Make
Make
Make
clean
休闲
单片机 DS1302 痛苦的调试过程,把我的经验教训分享给大家,希望能给后来者一点帮助---二 比一好些
topic.csdn.net/u/20090727/17/b3ae539e-f3eb-41e3-a4be-1ea2b5ab8254.html 首先把我用的程序贴出来,是网上下的,我已经通过硬件测试,绝对没有问题C/
C+
jinn3
·
2012-03-27 20:00
make 、make clean、make depend的区别
makeclean删除源代码(C\
C++code
)生成的执行文件和所有的中间目标文件3.make depend一种makefile的规则,通过扫描仪个目录下的所有C\C++代码,从而判断出文件之间的依赖关系
jian_pku
·
2012-03-14 14:00
c
linux
makefile
Makefile模板
来自:yfkiss(夜风) C/
C++code
#######################################################################makefile
djinglan
·
2012-03-05 20:00
shell
include
makefile
extension
编译器
wildcard
CEdit自绘背景
CEdit背景自绘.方案:在CtlColor设置透明.在OnEraseBkgnd自绘.在OnEnChange使之无效.代码如下.C/
C++code
#pragma once
Mirage520
·
2012-03-04 00:00
c++ split ()
c++code
:Split(conststring&s,conststring&delimiter,vector*result) { size_tlast=0; size_tindex=s.find_first_of
kankan_summer
·
2012-02-26 16:00
C++
c
String
如何用C/C++在控制台下动态输出进度
C/
C++code
#include #include int main(){ int i; for (i = 0 ;i
huangmou37
·
2012-01-05 16:00
windows
一段重启WinCE下explorer.exe的代码
C/
C++code
// 请在前边加上tlhelp32.h和toolhelp.lib void CResAdjustDlg::RestartExplorer(){
js_gary
·
2011-12-26 11:00
exception
null
WinCE
结构体继承自结构体
C++Code
:/*功能:结构体继承自结构体结论:1.结构体可以继承自结构体2.结构体同样有构造函数和析构函数*/#includeusingnamespacestd;structMNode{intval
joeblackzqq
·
2011-12-23 15:29
Linux_C++
Win_C++
结构体继承自结构体
C++Code
:/* 功能:结构体继承自结构体 结论: 1.结构体可以继承自结构体 2.结构体同样有构造函数和析构函数 */ #include usingnamespacestd
JoeBlackzqq
·
2011-12-23 15:00
c
struct
键盘事件
C/
C++code
keybd_event(VK_CONTROL,(BYTE) 0 , 0 , 0 );keybd_event( ' A ' ,(BYTE
stonesharp
·
2011-12-22 09:00
Blog
delete
input
Access
byte
menu
char 字符串
pStr要查找的字符串,iStrLen字符串长度C/
C++code
const char * function( char * pStr, int
ykm0722
·
2011-12-19 22:00
String
null
delete
input
token
stdstring
undefined reference to gettid
头文件有实现代码如下:C/
C++code
pid_tgettid(){ return syscall(SYS_gettid);}
diy534
·
2011-12-16 16:00
c
linux
reference
2010
内存读取以及内存对齐
C++Code
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910
pfgmylove
·
2011-12-13 17:00
_T在C++下的使用与说明
C/
C++code
#define __T(x)L##x #define _T(x)__T(x) 他的作用是让你的程序支持Unicode编码因为Windows使用两种字符集
zhongguoren666
·
2011-12-06 13:00
顺序容器STL::list用法
C++Code
://顺序容器STL::list用法 #include #include #include #include usingnamespacestd; voidappendItems
JoeBlackzqq
·
2011-11-09 22:00
c
list
String
iterator
面试题2
C/
C++code
void foo(); void bar( int k){ if (k > 0 ){ do {k =
jetjetlinuxsystem
·
2011-09-18 17:00
算法
面试
存储
ini
搜狗
请用C语言在32位环境下,设计一个32位无符号长整数求和函数,相加之和存储在两个32位无符号整数
不用64位类型的话可以这样:C/
C++code
voidAdd64(unsignedintadd1
ysdaniel
·
2011-09-14 13:00
c
存储
语言
这些题目,来测试一下你的C语言水平
1,Theoutputforthisprogramis:(a)3(b)5(c)0 C/
C++code
#include staticjmp_bufbuf; intmain(){ volatileintb
tianmo2010
·
2011-09-02 13:00
c
测试
语言
float
output
Pointers
C中调用C++与C++调用C
例如://
C++code
:extern"C"voidf(int);voidf(inti){//...}然后,你可以这样使用
Devil_2009
·
2011-08-31 10:00
C++
c
struct
float
wrapper
编译器
C/C++混合编程
先介绍在C++中调用C,这个大家都比较熟悉:例://C代码voidfoo(intx); //C++代码//
C++code
extern"C"voidfoo(intx); 让C++连接器能通过过类似于_foo
Qoo_wzp
·
2011-08-10 12:00
c
struct
Class
iostream
wrapper
编译器
C语言基础测验
topic.csdn.net/u/20110729/12/9973E5A4-A414-4714-871F-905A85612297.html 1,Theoutputforthisprogramis:(a)3(b)5(c)0C/
C+
shen8686
·
2011-08-03 17:00
c
struct
语言
float
output
Pointers
C++断点调试方法
C/
C++code
:f9---设置/取消断点f10---单步执行f11---比f10的步幅小,f10在函数的调用时,直接跳过,在f11下,会进入函数体!f5---执行到下一个断点!
cwy_bupt
·
2011-08-03 09:36
如何移植library到android(三)
有些具体的东西还是没有讲清楚,这次专门讲讲androidndk.先看看androidndk的目录layout大概长的怎么样.root |------apps,所有你要编译的C和
c++code
都放到这个目录下
CHALLEN537
·
2011-07-20 22:00
VS2005中CString与其他格式的转换 (UNICODE字符集带来的问题)
使用MFC的转换宏,很简单的T2CA()转成char*T2CW()转成wchar_t*...类似的转换很多,可以自己查资料A2TA2CWA2WW2CAW2A ...C/
C++code
#include
vbskj
·
2011-06-11 18:00
n 个骰子的点数
打算用动态规划来求解的,C/
C++code
设T(n,m)为n个骰子和为m的概率含有递推式如下:T(n,m) = T(n - 1 ,m - 1 ) *
wangyangkobe
·
2011-05-31 13:00
C/C++混合编程,实现C/C++间的函数相互调用详解
例如: //
C++code
:extern"C"voidf(int);voidf(inti){ //...}
wangfaqiang
·
2011-05-27 16:00
编程
c
struct
float
wrapper
编译器
Python 小计
这是一个普通的混合使用方式,但这种方式不能达到脚本真正的灵活性,c++每个属性必须绑定一个唯一的set和get接口提供给python内部访问这个属性 C/
C++code
: classsample{public
RTY 实践出真知
·
2011-05-27 07:00
初学线程,TlsSetValue
C/
C++code
// Test.cpp:定义控制台应用程序的入口点。
maikforever
·
2011-05-25 16:00
thread
工作
function
null
存储
2010
年份的加减运算符重载
C++Code
#include#include#includeusingnamespacestd;classCDate{ friendostream&operator2)//当前年份是否是闰年 { sumday++; } returnsumday;}intCDate::MonthDay(intyear,intmonth){ intcurday=0; boolleap=IsLeapYear(year); swi
qihailong123456
·
2011-05-24 23:00
C++
Date
object
OS
include
动态设置模态对话框标题
若想动态设置其标题,应该通过设置函数和变量的方式来操作,例如:C/
C++code
: class CDlgInput: public CDialog{ public :..
xhhjin
·
2011-03-23 15:00
exception
Class
网络编程记录
我是从来不用心跳,影响效率,起一个线程去select就行了C/
C++code
int select(__in int nfds,__in_outfd_set * readfds
ldd909
·
2011-02-12 10:00
编程
优化
网络
IO
list
服务器
QT中文显示问题
问题:http://topic.csdn.net/u/20090320/10/287c7dba-29c0-4d76-af75-4d19104f544e.htmlC/
C++code
QTextCodec
ryanzz
·
2010-12-15 17:00
linux
xml
dll
qt
plugins
Codec
c++ 注册表类
C/
C++code
复制代码#if!
zhangxiaonanwin
·
2010-11-19 15:00
C++
null
Access
byte
反转链表
方法一:递归版本C/
C++code
template ListNode * reverse_slist_recursive
liziyun537
·
2010-11-17 22:00
模板元编程
思路:模板元编程,最快捷的计算方式,编译期完成计算*/C/
C++code
#include using namespace std;template
liziyun537
·
2010-11-17 22:00
xvid 压缩封装类
假设你已经编译1.3通过并生成了xvid.dll 先贴编码类给你看看 C/
C++code
// mediacodec.HFile class xvidCode:{
markman101
·
2010-10-17 19:00
jwsmtp, a simply C++ SMTP library
wSMTP,Sendemailprogrammatically(
C++code
/lib).Linux,BSD,Windowsetc.Attachments,Multiplerecipients,Cc/Bccrecipientssupported.MXlookuporsendtoanSMTPserverdirect.LOGINandPLAINauthenticationnowsupported.Ht
ghlfllz
·
2010-10-10 14:00
C++
windows
server
Authentication
library
login
vs中使用M_PI的问题及解决
M_PI是一个宏定义,圆周率的定义 C/
C++code
#define M_PI3.14159265358979323846 此宏定义和编译器有关
redline2005
·
2010-09-03 09:00
编译器
math.h
约瑟夫环算法
文章分类:C++编程C代码C/
C++code
#include #include #define LENsizeof(structnode) struct
adengliuqing
·
2010-07-22 17:00
make,make clean,make depend的区别
makeclean删除源代码(C/
C++code
)生成的执行文件和所有的中间目标文件2。
naughty610
·
2010-06-18 21:00
makefile
STL for_each,find_if用法
C/
C++code
template Functionfor_each(InputIteratorfirst,InputIteratorlast,Functionf){ for
oathevil
·
2010-05-22 23:00
function
iterator
Class
each
binary_function
但是如果你使用一些functionadapter的时候就需要了,这其实是在实现一种concept.比如,定义一个functor,用来给一个vectorpush_back一个值C/
C++code
yzm365487848
·
2010-05-07 14:00
算法
function
struct
vector
functor
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他