码迷,mamicode.com
首页 >  
搜索关键字:ex    ( 2448个结果
MVC整个例子的源码
下面就是整MVC例子的源码:#windows应用程序 #开发人员:蔡军生(QQ:9073204) 深圳 2014-9-24 #使用类来描述 from ctypes import * from ctypes.wintypes import * WS_EX_APPWINDOW = 0x40000 WS_OVERLAPPEDWINDOW = 0xcf0000 WS_CAPTION = 0xc000...
分类:Web程序   时间:2014-09-30 16:02:59    阅读次数:160
sql获取表字段名、描述和类型
SELECT TableName = OBJECT_NAME(c.object_id), ColumnsName = c.name, Description = ex.value, ColumnType=st.name, Length=c.max_length FROM sys.columns c ...
分类:数据库   时间:2014-09-28 14:25:42    阅读次数:228
Evaluate Reverse Polish Notation
题目描述:Evaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an integer or another ex...
分类:其他好文   时间:2014-09-28 11:27:51    阅读次数:164
php amqp 消息队列 RabbitMQ 交换器类型 直连 (三)
1、AMQP_EX_TYPE_DIRECT:直连型 直连型又包括: 1对1 和1对N(N对1、 N对N) 接收端receive.php代码如下 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 <!--?php ? $connect =...
分类:Web程序   时间:2014-09-26 21:36:28    阅读次数:321
并发编程—— 中断
Java并发编程实践 目录并发编程—— ConcurrentHashMap并发编程—— 阻塞队列和生产者-消费者模式并发编程—— 闭锁CountDownLatch 与 栅栏CyclicBarrier并发编程—— Callable和Future并发编程—— CompletionService : Ex...
分类:其他好文   时间:2014-09-26 13:45:58    阅读次数:220
how to find out the switch port by IP address
Subject: HowtofindouttheportnumberbyIPaddressSolution:Incore switch,pingtheIPaddress,Ex:telnet@GemHF-Fab-Core#ping10.20.12.111Sending1,16-byteICMPEchoto10.20.12.111,timeout 5000msec,TTL64TypeControl-ctoabortReplyfrom10.20.12.111:bytes=16time=1msTTL=128Succe..
分类:其他好文   时间:2014-09-26 11:37:59    阅读次数:218
并发编程—— 任务取消
Java并发编程实践 目录并发编程—— ConcurrentHashMap并发编程—— 阻塞队列和生产者-消费者模式并发编程—— 闭锁CountDownLatch 与 栅栏CyclicBarrier并发编程—— Callable和Future并发编程—— CompletionService : Ex...
分类:其他好文   时间:2014-09-25 20:36:17    阅读次数:143
Cocos2d-x3.1通过JniHelper调用Java类中静态函数
1、创建Cocos2d-x工程 (1)cd /Users/自己用户名/Desktop/cocos2d-x-3.1/tools/cocos2d-console/bin  (2)cocos new JniDemo -p com.pactera.jni -l cpp -d 自己的工程路径 2、将新建工程的proj.android导入ADT (1)FILE->Import->Android->Ex...
分类:编程语言   时间:2014-09-25 17:37:07    阅读次数:310
DTD - Attributes
In a DTD, attributes are declared with an ATTLIST declaration.Declaring AttributesAn attribute declaration has the following syntax:DTD example:XML ex...
分类:其他好文   时间:2014-09-25 04:03:28    阅读次数:283
Linux C编程学习资料,学习过程
学习IBM中国上的文章“系统调用跟我学”系列文章。文章地址为http://www.ibm.com/Search/?q=系统调用跟我学&v=16&en=utf&lang=zh&cc=cn&Search=搜索。 内容包括getpid, fork, exit和_exit,wait,waitpid和ex.....
分类:系统相关   时间:2014-09-24 15:41:36    阅读次数:259
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!