码迷,mamicode.com
首页 >  
搜索关键字:cpp ace    ( 32997个结果
yuv视频用opengl播放
// openGL_yuv.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #include #include "GL/glew.h"#include "...
分类:其他好文   时间:2014-06-06 17:35:29    阅读次数:522
Erlang学习笔记(一)
概述=================================前端时间学习cpp,感到有些疲惫,也感到了一些困惑,久思未解。 正好放松下自己,就拿起了erlang。erlang是一个高并发的编程语言,而且支持热部署,适合做DB server。虽然erlang的计算能力相对于他的并发能力要逊色...
分类:其他好文   时间:2014-06-06 14:14:52    阅读次数:231
使用VS2012 C++ 进行单元测试
第一步 使用VS2012新建一个的控制台项目main,编辑main.cpp文件 ,代码如下// main.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"int add(int a,int b){ return a+b;}int minus(int a,int b....
分类:编程语言   时间:2014-06-06 09:31:33    阅读次数:327
学生成绩管理系统
1 //学生成绩管理系统 V1.0 2 //student.cpp 3 //Made By SUT_Hui 4 //2012-3-12 5 //wangchunhui@wangchunhui.cn 6 7 #include 8 #include 9 #include ...
分类:其他好文   时间:2014-06-06 09:28:12    阅读次数:486
Swift 枚举和结构
枚举 使用enum创建枚举——注意 Swift 的枚举可以关联方法: 1 enum Rank: Int { 2 case Ace = 1 case Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten 3 case Jack, Q...
分类:其他好文   时间:2014-06-06 08:30:54    阅读次数:285
[Bada开发]初步入口函数介绍
首先,使用bada SDK自带的IDE创建一个新的bada:application project ,Project name 定为*。程序的入口在自动生成的 *Entry.cpp文件中,入口函数是_EXPORT_intOspMain(intargc,char*pArgv[]);AppLog("Ap...
分类:其他好文   时间:2014-06-05 21:04:01    阅读次数:279
开源免费的C/C++网络库(c/c++ sockets library)
(1)ACE庞大、复杂,适合大型项目。开源、免费,不依赖第三方库,支持跨平台。http://www.cs.wustl.edu/~schmidt/ACE.html(2)AsioAsio基于Boost开发的异步IO库,封装了Socket,简化基于socket程序的开发。开源、免费,支持跨平台。http:...
分类:编程语言   时间:2014-06-05 21:02:46    阅读次数:336
OpenGL【2 坐标变换】
// OpenGL.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include #include using namespace std; void init(void) { glClearColor(1.0,1.0,1.0,1.0); glClear(GL_COLOR_BUFFER_BIT); glShadeMod...
分类:其他好文   时间:2014-06-02 11:02:18    阅读次数:282
编译当前文件下cpp的bat
@echo offif not exist Main.cpp echo %cd%\Main.cpp不存在>>log.txtif not exist Shader.fsh echo %cd%\Shader.fsh不存在>>log.txtif not exist Shader.vsh echo %cd%...
分类:其他好文   时间:2014-06-02 08:49:04    阅读次数:234
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!