码迷,mamicode.com
首页 >  
搜索关键字:return    ( 60766个结果
WindowsForm应用程序调用WebService
本文原创,如需转载,请标明源地址,谢谢合作!http://blog.csdn.net/sue_1989/article/details/6597078 本文的编写IDE为VSTS2008和.NET Framework3.5 ,其他版本的VS或.Net Framework类似 本示例程序说明:从Win ...
分类:Windows程序   时间:2016-10-22 00:43:09    阅读次数:343
mvc局部视图
新建一个控制器啊! public ActionResult Index() { ViewBag.title = "this is title!!!"; return View(); } public ActionResult PP() { ViewBag.name = "this is PP!!!" ...
分类:Web程序   时间:2016-10-22 00:28:11    阅读次数:180
LeetCode90 Subsets II
题目: Given a collection of integers that might contain duplicates, nums, return all possible subsets. Note: The solution set must not contain duplicate ...
分类:其他好文   时间:2016-10-22 00:15:59    阅读次数:215
C 32个关键字
auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned continue for signed void ...
分类:其他好文   时间:2016-10-22 00:03:32    阅读次数:161
递归好理解,可是不好用啊
<!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title></head><body> <script> //递归函数:是在一个函数内通过名字可以调用自身的情况下,就叫做递归函数 //求5! 5*4*3*2*1 //求6! ...
分类:其他好文   时间:2016-10-22 00:02:17    阅读次数:288
为Page添加INotifyPropertyChanged功能
在Page页面里面, DataContext 更新后,前台数据要求会自动更新. 但前台的绑定如果用x:bind 语法. 它要求强类型.直接关联到DataContext上就不行了. 需要为Page 添加 INotifyPropertyChanged 接口实现. 页面如果很多的话. 为每个页面实现此接口 ...
分类:其他好文   时间:2016-10-21 20:04:25    阅读次数:236
MVC前后端数据被编码
@{ ViewBag.Title = "Home Page";}<script> function htmldecode(s) { console.log(s); var div = document.createElement('div'); div.innerHTML = s; return d ...
分类:Web程序   时间:2016-10-21 19:30:44    阅读次数:142
XDOJ_1088 _cmp
http://acm.xidian.edu.cn/problem.php?id=1088 MDZZ,这么简单的cmp被自己搞的那么复杂,WA了无数遍。 ...
分类:其他好文   时间:2016-10-21 19:21:51    阅读次数:138
javascript-适配器模式
适配器模式笔记 将一个类(对象)的接口(方法或属性)转化成另一个接口,以满足用户需求,使类(对象)之间接口的不兼容性问题通过适配器方法得以解决 demo实例:1.适配参数对象,使传入的参数完整 2.适配参数对象类型,通过适配器转换要传入的参数类型 1.适配参数对象,使传入的参数完整 参数测试数据对象 ...
分类:编程语言   时间:2016-10-21 19:08:57    阅读次数:186
在dev目录创建一个字符设备驱动的流程
1.struct file_operations 字符设备文件接口 1: static int mpu_open(struct inode *inode, struct file *file) 2: { 3: return 0; 4: } 5: 6: 7: 8: static int mpu_clo... ...
分类:其他好文   时间:2016-10-21 16:24:54    阅读次数:206
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!