码迷,mamicode.com
首页 >  
搜索关键字:partial    ( 1590个结果
Regular Expression Matching
‘.’ Matches any single character.‘*’ Matches zero or more of the preceding element.The matching should cover theentireinput string (not partial).The f...
分类:其他好文   时间:2014-10-04 06:16:56    阅读次数:232
partial函数-python学习
一个函数可以有多个参数,而在有的情况下有的参数先得到,有的参数需要在后面的情景中才能知道,python 给我们提供了partial函数用于携带部分参数生成一个新函数。def add(a,b,c=2): print("a is:%s b is %s c is %s"%(a,b,c)) r...
分类:编程语言   时间:2014-10-02 00:18:41    阅读次数:233
部分视图调用方法总结(Action 、 RenderAction 、 Partial 、 RenderPartial)
部分视图调用方法总结(Action 、 RenderAction 、 Partial 、 RenderPartial)
分类:其他好文   时间:2014-09-29 20:16:52    阅读次数:190
python 偏函数
functools.partial可以设置默认参数和关键字参数的默认值Python的functools模块提供了很多有用的功能,其中一个就是偏函数(Partial function)。要注意,这里的偏函数和数学意义上的偏函数不一样。在介绍函数参数的时候,我们讲到,通过设定参数的默认值,可以降低函数调...
分类:编程语言   时间:2014-09-28 02:48:50    阅读次数:222
天猫登录源码 POST C#
HttpHelper 请从网络中搜索; public partial class LoginTMall : Form { public LoginTMall() { InitializeComponent(); } private void btnLogin_Click(object se...
分类:其他好文   时间:2014-09-27 18:02:10    阅读次数:378
关闭当前窗口,打开另一窗口
namespace CloseOpen{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } privat...
分类:其他好文   时间:2014-09-25 04:11:08    阅读次数:271
STL algorithm算法partial_sort,partial_sort_copy(42)
partial_sort原型: std::partial_sort default (1) template void partial_sort (RandomAccessIterator first, RandomAccessIterator middle, RandomAccessIterator last)...
分类:其他好文   时间:2014-09-22 17:38:32    阅读次数:298
WindowsPhone8可缩放图片控件的实现
xaml中添加: cs中添加:namespace ImageExtend{ public partial class ZoomImage : UserControl...
分类:Windows程序   时间:2014-09-22 15:43:42    阅读次数:329
C# Partial:分部方法和分部类
using System;namespace Partial{ class Program { static void Main(string[] args) { A a = new A(); } } parti...
分类:其他好文   时间:2014-09-19 13:49:25    阅读次数:186
asp.net后台解析JSON,并将值赋给对象
示例代码如下: 1 using System; 2 using System.Collections.Generic; 3 using System.Web.Script.Serialization; 4 5 public partial class JsonTest : System.Web......
分类:Web程序   时间:2014-09-18 11:05:13    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!