class Work { [DllImport("user32.dll")] static
extern void mouse_event(MouseEventFlag flags, int dx, int dy, uint data, UIntPtr
extr...
分类:
其他好文 时间:
2014-07-22 23:06:55
阅读次数:
347
一个通常的函数调用的例子://声明(一般头文件中)void MyFun(int x);
//此处的申明也可写成:void MyFun( int );int main(int argc, char* argv[]){ MyFun(10);
//这里是调用MyFun(10);函数 return 0;}v...
分类:
其他好文 时间:
2014-07-22 23:06:16
阅读次数:
239
近期在看dnsjava 源码的时候,不经意间发现一个自己没有想过的问题:HashMap
如何使用key去查找对应的value的,这个问题很难用语言描述的清楚,那就使用代码来进行说明吧!public class test { public
static void main(String[] ar...
分类:
编程语言 时间:
2014-05-01 16:20:07
阅读次数:
509
下面是Jquery中AJAX参数详细列表:参数名类型描述urlString(默认:
当前页地址) 发送请求的地址。typeString(默认: "GET") 请求方式 ("POST" 或 "GET"), 默认为 "GET"。注意:其它 HTTP
请求方法,如 PUT 和 DELETE 也可以使用,但...
分类:
Web程序 时间:
2014-05-01 15:51:18
阅读次数:
504
在应用程序中用到MPMoviePlayerViewController时,有时需要保持应用程序为竖屏状态,而视频播放器显示为横屏,如何做呢?如果采用强制横屏的方法,应用审核的时候是不会通过的,因为该方法已经被苹果禁止了。主要代码如下:[html]view
plaincopy-(void)addVid...
分类:
移动开发 时间:
2014-05-01 15:34:14
阅读次数:
436
private void ToConvert_Click(object sender,
EventArgs e) { string strPath = System.Windows.Forms.Application.StartupPath;
...
分类:
其他好文 时间:
2014-05-01 14:44:33
阅读次数:
346
1.RootViewController.m#import
"RootViewController.h"#define URL
@"http://localhost:8080/TestOne/upload3.jsp"@implementation RootViewController-
(void)...
分类:
Web程序 时间:
2014-05-01 14:43:52
阅读次数:
541
--查找姓名、性别、年龄、地址、电话相同的员工记录。select count(id) as
id_count, name, sex, birthday, address, telfrom staffgroup by name, ...
分类:
其他好文 时间:
2014-05-01 13:57:05
阅读次数:
314
#include "stdio.h"/*int* set(int a,int *c){int
*b;b=malloc(sizeof(int)*3);c[0]=a;c[1]=1+a;c[2]=2+a;b[0]=13;b[1]=14;b[2]=15;return
b;}*/char *set(void)...
分类:
编程语言 时间:
2014-05-01 13:56:31
阅读次数:
306
知识这个东西,真是知道的越多就不知道的越多,C/C++这塘水得多深啊,哈哈。看下面3个片段:1void fun(char a[100])
{2fprintf(stderr, "%s\n", a);3}45int main(void) {6char aa[200] =
"abcdef";7fun(aa...
分类:
其他好文 时间:
2014-05-01 01:44:36
阅读次数:
292