码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
.NET 3.5 : 读写RSS或者ATOM
在.NET 3.5中提供了一套全新的接口来实现对RSS和ATOM这两种数据文件的读写。非常方便。下面演示一下1. 首先要添加一个引用System.ServiceModel.Webusing System.ServiceModel.Syndication;using System.Xml;2. 读取R...
分类:Web程序   时间:2014-04-30 04:51:29    阅读次数:513
PowerDesigner 15 进行 数据库反转到 数据库模型
菜单"File" - "Reverse Engineer" - "DataBase"弹出来 New Physical Data Model 窗口 ,为模型建好名字 - 点击确定到下一步 就是为建立 类似 jdbc连接数据库的配置文件的一个功能。选择using a data source : 点击右侧...
分类:数据库   时间:2014-04-30 02:46:10    阅读次数:585
iOS View 模糊效果(毛玻璃)
相关资料http://stackoverflow.com/questions/18404907/using-gpuimage-to-recreate-ios-7-glass-effecthttp://stackoverflow.com/questions/17036655/ios-7-style-b...
分类:移动开发   时间:2014-04-30 02:03:09    阅读次数:729
向第三方软件发送消息演示
这里仅仅是以putty作为演示消息发送机制和控件搜索机制,不完善,待更新#include"stdafx.h"#include #include using namespace std;HWND FindTextBox(HWND hWnd,DWORD select_edit=1){ HWND hEdi...
分类:其他好文   时间:2014-04-29 22:20:23    阅读次数:587
Dictionary<Key,Value>的用法
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 计算字符{ class Program { ...
分类:其他好文   时间:2014-04-29 20:45:02    阅读次数:446
算法设计与分析 ------最近对问题与8枚硬币问题
利用减治法实现8枚硬币问题:参考资料:http://blog.csdn.net/wwj_748/article/details/8863503 算法设计--八枚硬币问题 1 #include "stdafx.h" 2 #include 3 #include 4 using namespace ...
分类:其他好文   时间:2014-04-29 18:18:17    阅读次数:510
Codeforces Round #243 (Div. 2) B. Sereja and Mirroring
#include #include #include using namespace std;int main(){ int n,m; cin >> n >> m; vector > a(n,vector(m,0)); for(int i = 0; i > a[i][j]; ...
分类:其他好文   时间:2014-04-29 17:41:18    阅读次数:425
C++虚复制构造函数
构造函数不能是虚函数。但有时候确实需要能传递一个指向基类对象的指针,并且有已创建的派生类对象的拷贝。通常在类内部创建一个Clone()方法,并设置为虚函数。//Listing 12.11 Virtual copy constructor#include using namespace std;cla...
分类:编程语言   时间:2014-04-29 17:26:52    阅读次数:522
2014/4/28 多校第九次
C:快速求N以内因数和,N以内互质数的和。容斥版: 1 #include 2 #include 3 #include 4 #define maxn 1100000 5 #define LL long long 6 //N以内gcd(i,N)==1的i的和 7 using name...
分类:其他好文   时间:2014-04-29 17:08:17    阅读次数:470
How To: Perl TCP / UDP Socket Programming using IO::Socket::INET
http://www.thegeekstuff.com/2010/07/perl-tcp-udp-socket-programming/In this article, let us discuss how to write Perl socket programming using the inb...
分类:Web程序   时间:2014-04-27 23:22:09    阅读次数:679
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!