首页 > 2015年01月20日 > 全部分享
ActiveX控件制作过程问题汇总
Microsoft JScript 运行时错误: 安全透明方法“MacActiveX.MacActive.GetComputerMAC()”尝试访问安全关键方法“System.Management.ManagementClass..ctor(System.String)”失败。程序集“MacActi...
分类:其他   时间:2015-01-20 15:26:00    收藏:0  评论:0  赞:0  阅读:690
note
求平均数 double=(数字的和)/4.0 除以浮点数IO-04. 混合类型数据格式化输入#include #include /* run this program using the console pauser or add your own getch, system("pause") or...
分类:其他   时间:2015-01-20 15:25:51    收藏:0  评论:0  赞:0  阅读:227
【JAVA网络流】
一、ServerSocketjava.lang.Object |-java.net.ServerSocket有子类SSLServerSocket。此类实现服务器套接字。服务器套接字等待请求通过网络传入。它基于该请求执行某些操作,然后可能向请求者返回结果。常用构造方法:ServerSocket(in....
分类:编程语言   时间:2015-01-20 15:25:38    收藏:0  评论:0  赞:0  阅读:281
读取xml
var xmlDoc = new XmlDocument();xmlDoc.Load(fatalFile);var s = xmlDoc.SelectNodes("configuration/appSettings/add[@key='KeyName']")[0].Attributes["value...
分类:其他   时间:2015-01-20 15:25:28    收藏:0  评论:0  赞:0  阅读:230
C#中this指针的用法示例
这篇文章主要介绍了C#中this指针的用法,对初学者而言是非常重要的概念,必须加以熟练掌握,需要的朋友可以参考下。本文实例展示了C#中this指针的用法,对于初学者进一步牢固掌握C#有很大帮助,具体内容如下:一、this指针是什么:这里有一些面向对象编程的概念需要说明:类(Class)的概念和对象(...
分类:Windows开发   时间:2015-01-20 15:25:18    收藏:0  评论:0  赞:0  阅读:315
Python ConfigParser的使用
1.基本的读取配置文件-read(filename) 直接读取ini文件内容-sections() 得到所有的section,并以列表的形式返回-options(section) 得到该section的所有option-items(section) 得到该section的所有键值对-get(sect...
分类:编程语言   时间:2015-01-20 15:25:06    收藏:0  评论:0  赞:0  阅读:310
迭代器模式
用途 迭代器模式 (Singleton) 提供一种方法顺序访问一个聚合对象中各个元素,而又不暴露该对象的内部表示。 迭代器模式是一种行为型模式。结构 图-迭代器模式结构图Iterator : 定义访问元素的接口。interfaceIterator{publicObjectfirst();pub...
分类:其他   时间:2015-01-20 15:24:57    收藏:0  评论:0  赞:0  阅读:282
TDictionary 是delphi用的,c++builder用起来太吃力。
TDictionary 是delphi用的,c++builder用起来太吃力。c++还是用std::map代替。#include void __fastcall TForm2::FormCreate(TObject *Sender) { std::map *Dir = new std::m...
分类:编程语言   时间:2015-01-20 15:24:46    收藏:0  评论:0  赞:0  阅读:718
asp.net微信公众平台开发
http://mp.weixin.qq.com/wiki/index.php?title=%E6%B6%88%E6%81%AF%E6%8E%A5%E5%8F%A3%E6%8C%87%E5%8D%97微信公众平台接口指南微信公众平台的开发比较简单,首先是网址接入公众平台用户提交信息后,微信服务器将发送...
分类:微信   时间:2015-01-20 15:24:36    收藏:0  评论:0  赞:0  阅读:377
xml 校验
package sax.parsing;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import javax.xm...
分类:其他   时间:2015-01-20 15:24:27    收藏:0  评论:0  赞:0  阅读:382
POJ 1321 棋盘问题
棋盘问题Time Limit: 1000msMemory Limit: 10000KBThis problem will be judged onPKU. Original ID:132164-bit integer IO format:%lld Java class name:Main在一个给定形...
分类:其他   时间:2015-01-20 15:24:06    收藏:0  评论:0  赞:0  阅读:171
HTML5版的String Avoider小游戏
HTML5版的String Avoider小游戏 http://www.newgrounds.com/portal/view/300760 蛮简单也蛮考验耐心,从游戏起始点移动鼠标到终点位置,鼠标移动过程绘制出移动轨迹的String平滑曲线,整个过程不能碰撞到边界,从技术角度来说其核心就是根据鼠标移...
分类:Web开发   时间:2015-01-20 15:23:59    收藏:0  评论:0  赞:0  阅读:376
兼容sdk7&iOS7的issue解决小片段总结
ios7新增加的icon尺寸:76 x 76:Size for iPad 2 and iPad mini (standard resolution)120 x 120 :Size for iPhone and iPod touch (high resolution)152 x 152:Size fo...
分类:移动平台   时间:2015-01-20 15:23:46    收藏:0  评论:0  赞:0  阅读:340
aa.c
#include #include "request.h"#include "managerLogin.h"#include "call.h" int main(int argc,char *argv[]){ gtk_init(&argc,&argv); /*初始化GTK+工具库*/ /...
分类:其他   时间:2015-01-20 15:23:36    收藏:0  评论:0  赞:0  阅读:290
HDU1004
题目链接 :http://acm.hdu.edu.cn/showproblem.php?pid=1004Let the Balloon RiseTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others...
分类:其他   时间:2015-01-20 15:23:26    收藏:0  评论:0  赞:0  阅读:142
Data URI scheme(转)
大家可能注意到了,网页上有些图片的src或css背景图片的url后面跟了一大串字符,比如:1234567background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAYAAABIdFAMAAAAGXRFWHR...
分类:其他   时间:2015-01-20 15:22:56    收藏:0  评论:0  赞:0  阅读:271
LA2995 Image Is Everything
很有助于思考的模拟题#include #include #include #include #include #include using namespace std;const int maxn = 15;const int maxv = 1005;const int mod = 1e9+7;co...
分类:其他   时间:2015-01-20 15:22:36    收藏:0  评论:0  赞:0  阅读:159
8_游戏循环
```while (true){ Event* event = waitForEvent(); dispatchEvent(event);}while (true){ processInput(); update(); render();}```游戏循环在游戏运行期间一直执行,每次循环,会...
分类:其他   时间:2015-01-20 15:22:26    收藏:0  评论:0  赞:0  阅读:238
jython学习笔记3
1.os.environ["HOME"] 为什么这句话在我的STS中打印不出东西,还报错MethodDescriptionclose()Close filefileno()Returns integer file descriptorflush()Used to flush or clear the...
分类:其他   时间:2015-01-20 15:22:16    收藏:0  评论:0  赞:0  阅读:211
Python时间,日期,时间戳之间转换
1.将字符串的时间转换为时间戳方法:a = "2013-10-10 23:40:00"将其转换为时间数组import timetimeArray = time.strptime(a, "%Y-%m-%d %H:%M:%S")转换为时间戳:timeStamp = int(time.mktime(tim...
分类:编程语言   时间:2015-01-20 15:22:06    收藏:0  评论:0  赞:0  阅读:265
1901条   上一页 1 ... 58 59 60 61 62 ... 96 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!