码迷,mamicode.com
首页 >  
搜索关键字:partial    ( 1590个结果
局部更新document(partial updates to documents)
就像在Updating a whole document中所说的一样,更新document的步骤就是检索——修改——插入整个document。然而使用update,就能局部更新,就像在一个请求里增加一个计数器一样。以前说过document是不可变的——不能被修改,只能被替换,update也必须遵守这...
分类:其他好文   时间:2014-05-18 20:38:09    阅读次数:696
C#基础—不完整类型(局部类型)
1.为何要引入Partial Type 通常,我们在一个.cs文件中维护一个类,这也是一种一般约定,也算一个良好的编程风格,但是有些时候,这个类或类型非常庞大,这对可读性、维护性来说成了一种约定的限制。 当我们接触过一些 ORM 框架的自动生成代码映射的功能时,会发现,当我们使用工具生成了一些基本....
分类:其他好文   时间:2014-05-17 23:01:38    阅读次数:400
简单三层实现登陆
Model层[Serializable] public partial class tb_admin{ public tb_admin() {}#region Model private string _id; private string _name; private string _pwd; /...
分类:其他好文   时间:2014-05-17 17:48:35    阅读次数:278
[开发笔记]-实现winform半透明毛玻璃效果
亲测win7下可用,win8下由于系统不支持Aero效果,所以效果不是半透明的。代码:博客园插入不了代码了。。。。。public partial class Form1 : Form { int en; public struct MARGINS { ...
分类:Windows程序   时间:2014-05-17 04:49:32    阅读次数:551
Silverlight中关于ComboBox的各种使用
前端放置了几个ComboBox的控件。1 2 3 4 5 6 7 后端的Cs文件如下: 1 public partial class MainPage : UserControl 2 { 3 ...
分类:Web程序   时间:2014-05-16 19:35:04    阅读次数:439
WPF调用外部程序
想通过main()函数传递参数,先重载下面的OnStartup() public partial class App : Application { public static string args0; protected override void OnStar...
分类:其他好文   时间:2014-05-16 09:01:55    阅读次数:561
算法 — partial_sort
partial_sort接受一个middle迭代器,使序列中的middle-first个最小元素以递增顺序排序,置于[first, middle)内。下面是测试代码: #include #include #include using namespace std; int main() { int a[] = {10,9,8,7,6,5,4,3,2,1,0}; vec...
分类:其他好文   时间:2014-05-15 19:23:27    阅读次数:361
LeetCode 010 Regular Expression Matching
【题目】 Implement regular expression matching with support for '.' and '*'. '.' Matches any single character. '*' Matches zero or more of the preceding element. The matching should cover the entire input string (not partial). The function prototype shoul...
分类:其他好文   时间:2014-05-14 21:36:52    阅读次数:348
C and C++ : Partial initialization of automatic structure
Refer to:http://stackoverflow.com/questions/10828294/c-and-c-partial-initialization-of-automatic-structureThe points,The linked gcc documentation does...
分类:编程语言   时间:2014-05-14 07:58:53    阅读次数:417
复分析复习6——Cauchy积分理论2(Cauchy-Goursat定理)
前面我们提到Cauchy积分公式和定理都要求函数$f(z)\in C^1(\overline{\Omega})$,事实上这个条件可以减弱,而这个要归功于Goursat.我们有Cauchy-Goursat积分公式:设$\Omega\subset\mathbb C$为有界区域,且$\partial\.....
分类:其他好文   时间:2014-05-13 10:32:59    阅读次数:349
1590条   上一页 1 ... 155 156 157 158 159 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!