连接
CInternetSession *m_pInetsession;
CFtpConnection *m_pFtpConnection;
m_pInetsession=new CInternetSession(AfxGetAppName(),1,PRE_CONFIG_INTERNET_ACCESS);
try
{...
分类:
编程语言 时间:
2014-05-10 09:31:12
阅读次数:
635
Alice and Bob
Time Limit: 1000MS Memory limit: 65536K
题目描述
Alice and Bob like playing games very much.Today, they introduce a new game.
There is a polynomial like this: (a0*x^(2^0)...
分类:
其他好文 时间:
2014-05-10 08:44:35
阅读次数:
363
Description Yesterday your dear cousin Coach
Pang gave you a new 100MB hard disk drive (HDD) as a gift because you will get
married next year. But yo....
分类:
其他好文 时间:
2014-05-07 10:04:47
阅读次数:
382
原文:WP 前台或后台显示ShellToastusing
Microsoft.Phone.Shell;ShellToast toast = new ShellToast();toast.Title = "程序标题";
toast.Content = "内容"; toast.NavigationUri...
分类:
其他好文 时间:
2014-05-07 09:13:23
阅读次数:
283
【题目】
原文:
1.3 Design an algorithm and write code to remove the duplicate characters in a string without using any additional buffer. NOTE: One or two additional variables are fine. An
extra copy of...
分类:
其他好文 时间:
2014-05-07 08:48:12
阅读次数:
372
public class LinkedList {
Node head = null;
Node tail = null;
int length = 0;
public void add(Object object) {
Node node = new Node(object, null);
if (head == null) {
head = tail = nod...
分类:
其他好文 时间:
2014-05-07 08:24:17
阅读次数:
306
public class ArrayList {
Object[] objects = new Object[10];
int index = 0;
public void add(Object object) {
if (index == objects.length) {
Object[] newObjects = new Object[objects.length*2];
...
分类:
其他好文 时间:
2014-05-07 07:57:10
阅读次数:
257
paip.微信菜单直接跳转url和获取openid流程总结
#------不能直接跳转,贝儿提示不安全的链接..
#-------使用auth跳转.
//todox 直接转到。。 direct goto
ViewButton skrechCard = new ViewButton("刮刮卡o428,view," +
...
分类:
微信 时间:
2014-05-07 07:01:20
阅读次数:
903
结构化编程:过程是核心,围绕着要解决的任务来设计;面向对象编程:对象是核心,围绕问题域中的对象来设计。
万物皆对象,类是具有相同属性和行为的一组对象的集合。对象是类的实例,类是对象的抽象。为什么要使用类和对象呢?我们有了基本的数据类型,但实际物体太多,难以表示,我们抽象出类来描述,可以添加自己...
分类:
其他好文 时间:
2014-05-06 13:44:21
阅读次数:
242
在javascript中直接输出Date得到的结果是这样的:function
date(){var date = new Date();alert(date);}结果是:Mon Jun 15 15:30:46 UTC+0800
2009这可能不是我们所需要的,因此是需要转换下的,这里就学下我转换的几...
分类:
Web程序 时间:
2014-05-06 12:41:45
阅读次数:
369