码迷,mamicode.com
首页 > 2015年06月29日 > 全部分享
delegate用法
一般来说 delegate 可以申明一个delegate类型 比如 public delegate funa(object b)然后使用的时候申明 funa 作为类型 new funa(回调函数) 在遍历一个集合的时候,可能我们集合内部是一个类或者结构体类型,而给定的值是类中的一个成员变量值 ,那么...
分类:其他好文   时间:2015-06-29 13:10:18    阅读次数:136
winform 进制之间的转换
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2015-06-29 13:10:07    阅读次数:156
Qt源码分析之QObject(转自CSDN,作者oowgsoo)
1.试验代码:#include #include #include int main(int argc, char *argv[]){ QApplication app(argc, argv); int size = sizeof(QObject); QPushButton* quit = new ...
分类:其他好文   时间:2015-06-29 13:07:56    阅读次数:168
Django
自分层结构的 Web 设计理念普及以来,选择适合的开发框架无疑是项目成功的关键。在动态语言领域,Python、Ruby、Groovy 等语言在 Web 开发中的应用日益广泛。刚刚度过两周年生日的 Python 语言 Web 框架 Django,以其新颖简洁的开发模式和巨大的发展潜力,逐渐赢得大量开发...
分类:其他好文   时间:2015-06-29 13:07:28    阅读次数:129
在CentOS上部署基于dnx/coreclr的ASP.NET 5应用程序
在Ubuntu上写好了一个简单的ASP.NET 5应用程序,尝试将这个程序部署在没有mono环境的CentOS服务器上。部署步骤如下:1)安装libuv;2)安装openssl;3)安装dnvm;4)用dnvm安装基于coreclr的dnx;5)用git签出ASP.NET 5应用程序的源代码;6)安...
分类:Web程序   时间:2015-06-29 13:08:35    阅读次数:535
163及qq邮箱发送
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi...
分类:其他好文   时间:2015-06-29 13:09:18    阅读次数:143
Solution 5: Top K
问题描述输入一个整形数组和K,输出数组中前K大的元素们。解决思路思路1:排序如果用快排,平均时间复杂度为O(nlogn),最坏时间复杂度为O(n^2);空间复杂度为O(logn)~O(n);如果用堆排,时间复杂度为O(nlogn),空间复杂度为O(1).注意:Java中Arrays.sort()方法...
分类:其他好文   时间:2015-06-29 13:06:35    阅读次数:97
malloc动态分配多维数组
下面试自己写的三个测试程序,如果看懂了基本上动态分配多维数组就没什么问题啦:重点 1:深刻理解多维数组的概念,多维数组在内存中的分配情况,基本上动态分配也没什么问题的。然后还要注意一点的就是,释放是分配的逆过程!!!#include #include #include void main(void)...
分类:编程语言   时间:2015-06-29 13:06:13    阅读次数:104
培训的第一天
毕业四年后的再次学习,很兴奋,很期待。 看看之前么有好好学习,专业还选错了,以至于在接下来的思念工作生涯里,各种后悔。但是,世上么有卖后悔药的啊!这次机会我希望能好好把握。 对于计算机我可是么有一点接触的,但是无论怎样,我都要不虚此行! 希望各位同学多给点建议,我们互帮互助吧! 加油!以后的生活和....
分类:其他好文   时间:2015-06-29 13:08:03    阅读次数:120
PowerShell Tools for Visual Studio 2015
首先要去下载Visual Studio 2015 RC 版本https://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs.aspx现在还支持Windows 10版本。其次可以下载这个插件https://vis...
分类:系统相关   时间:2015-06-29 13:06:25    阅读次数:193
菜单切换
$('.income-chart .left-nav>li').click(function(){ var Index = $(this).index(); $(this).addClass('active').siblings().removeClass('active'); $...
分类:其他好文   时间:2015-06-29 13:08:10    阅读次数:155
《Python核心编程》P21输入数值字符串→转整型
>>> num=input('n:')n:1234>>> print('sdf:',n)Traceback (most recent call last): File "", line 1, in print('sdf:',n)NameError: name 'n' is not defi...
分类:编程语言   时间:2015-06-29 13:08:03    阅读次数:212
微信支付开发教程-静态链接Native原生支付开发
微信支付开发教程-静态链接Native原生支付开发
分类:微信   时间:2015-06-29 13:07:59    阅读次数:343
简单的makefile
转自 http://blog.csdn.net/todd911/article/details/42717995make定义了一种语言,可用来描述源文件、中间文件以及可执行文件之间的关系。它还提供了一些功能,可用来管理各种候选配置、实现可重用程序库的细节以及让用户自定义宏将过程参数化。简言之,ma....
分类:其他好文   时间:2015-06-29 13:05:48    阅读次数:119
Just a complaint about the college examinations
Well , you know. As a college student who want to find a good job after graduating like me , scores are not that important. I just want to have some ....
分类:其他好文   时间:2015-06-29 13:07:28    阅读次数:113
测试存储过程性能
create or replace view stats as select 'STAT...' || a.name name, b.value from v$statname a, v$mystat b where a.statistic# = b.statistic# union all ...
分类:其他好文   时间:2015-06-29 13:05:38    阅读次数:133
Git初探
Git初探一、使用Git有如些好处?1、回滚到指定的版本,比如说现在的版本出了问题,需要回滚2、比较任何随时间的变化3、可以查看谁最后修改的东西可能在导致一个问题4、谁在什么时间引入了一个问题等二、没有Git以前,是怎么处理类似事情的1、许多人选择的版本控制方法是Copy文件到另外的目录(也许是一个...
分类:其他好文   时间:2015-06-29 13:05:27    阅读次数:110
1970条   上一页 1 ... 79 80 81 82 83 84 85 ... 116 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!