
杂乱记事
文章平均质量分 53
mrandexe
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
单数组贴图
const int rows = 15; // 行 const int cols = 20; // 列 int g_iMap[rows*cols]; // 数组 // 初始化数组 for (int i=0; i原创 2011-02-27 09:10:00 · 800 阅读 · 0 评论 -
Flash(as3.0) CSound
package com.game.mr{ import flash.media.*; public class CSound { private var scl:SoundChannel = new SoundChannel(); private var sound:原创 2011-09-09 20:09:14 · 1136 阅读 · 0 评论 -
文件分割合并类(java)
import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.io.RandomAcce原创 2011-09-06 19:51:36 · 2473 阅读 · 0 评论 -
flash(as3.0)在线聊天室
package { import flash.display.*; import flash.net.*; import flash.events.*; import flash.utils.*; import flash.text.*; public c原创 2011-09-06 20:03:31 · 5448 阅读 · 0 评论 -
Toast-Android 专属浮动小提示
Toast.makeText(this, "Toast-Android 专属浮动小提示", Toast.LENGTH_LONG).show();原创 2011-07-14 15:20:47 · 1360 阅读 · 0 评论 -
自定义Copy函数
<br />#include <fstream> #include <iostream> #include <Windows.h> using namespace std; bool Copy(LPCTSTR lpSourceFileName, LPCTSTR lpTargetFileName) { char temp; ifstream ifstream(lpSourceFileName); ofstream ofstream(lpTargetFileName); if (i原创 2011-02-21 16:29:00 · 568 阅读 · 0 评论 -
利用宏定义创建资源
#define BTN(a,x,y,xd,yd,id) CreateWindow(L"BUTTON",a,dwChild|BS_PUSHBUTTON,x,y,xd,yd,g_hWnd,(HMENU)id,g_hInst,NULL); #define LBX(a,x,y,xd,yd原创 2011-09-16 13:42:10 · 647 阅读 · 0 评论