码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
c++ 内存泄露的检查
对于c++的内存泄露检测,除了我们自己手动检查以外,还可以使用c++中的函数来帮助我们检测, 如下代码: #include "stdafx.h" #include #include #include using namespace std; int main() { char *p=new char...
分类:编程语言   时间:2015-10-14 19:28:27    阅读次数:227
ASP.NET - URL中参数加密解密操作
效果:代码:using System;using System.Text;using System.IO;using System.Security.Cryptography;public partial class _Default : System.Web.UI.Page{ protect...
分类:Web程序   时间:2015-10-14 18:07:18    阅读次数:206
转-解决Mysql ERROR 1045 (28000): Access denied for user 'root'@'localhost'问题
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)Red Hat Enterprise Linux 5服务器上mysql启动报错:ERROR 1045 (28000): Access d...
分类:数据库   时间:2015-10-14 18:02:24    阅读次数:183
导出Excel 或 大量耗时计算时,前端界面保持可操作
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他好文   时间:2015-10-14 17:48:53    阅读次数:182
delphi 手机振动 IOS Android
delphi 手机振动 IOS Androidhttps://community.embarcadero.com/blogs/entry/how-to-vibrate-ios-and-android-phones-using-firemonkey-and-xe8http://blogs.embarc...
分类:移动开发   时间:2015-10-14 17:42:17    阅读次数:260
C# 实现文件下载的几种方式
摘自:http://www.cnblogs.com/zhangzt/archive/2009/12/14/1623426.htmlusing System;using System.Data;using System.Configuration;using System.Web;using Syst...
分类:Windows程序   时间:2015-10-14 15:52:51    阅读次数:170
多条件查询
using System; using System.Collections.Generic;using System.Linq; using System.Web;using System.Web.UI; using System.Web.UI.WebControls;public partial...
分类:其他好文   时间:2015-10-14 15:45:32    阅读次数:110
C# 文件压缩与解压(ZIP格式)
在企业开发过程中经常会遇到文件的压缩与解压,虽然网上很多流行的压缩文件格式都是RAR的,但是由于RAR不是一个开放的标准,因此ZIP成了更多人的选择。如果你不想自己开发的话可以选择开源的项目,比如SharpZipLib就是一个不错的选择。using System;using System.Colle...
分类:Windows程序   时间:2015-10-14 15:40:38    阅读次数:290
SOJ 1024. Magic Island
题目大意:给定一个n个点n-1条的连通无向图,求从任意一点出发,在不重复经过同一点的情况下,所能走过的的边的最大权值。解题思路:深度优先搜索。 1 #include 2 #include 3 using namespace std; 4 5 struct Edge { 6 int to...
分类:其他好文   时间:2015-10-14 14:09:49    阅读次数:159
Creating Physical Standby Using RMAN DUPLICATE...FROM ACTIVE DATABASE执行结果
1> run {2> allocate channel prmy1 type disk;3> allocate channel prmy2 type disk;4> allocate channel prmy3 type disk;5> allocate auxiliary channel stby...
分类:数据库   时间:2015-10-14 13:57:28    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!