1 SELECT definition 2 FROM sys.sql_modules JOIN sys.objects 3 ON sys.sql_modules.object_id=sys.objects.object_id 4 and type='P' 5 and sys.objects...
分类:
数据库 时间:
2014-09-10 15:35:40
阅读次数:
269
错误:Duplicate interface definition for class "类名称"原因:在工程中有相同的文件或相同的 @interface 类名称解决办法: 可以把其中一个 @interface 类名称 标记为分类 @interface MX (分类名称) //分类名称可省去,...
分类:
其他好文 时间:
2014-09-10 13:56:00
阅读次数:
192
1 /** 2 * Definition for binary tree 3 * public class TreeNode { 4 * int val; 5 * TreeNode left; 6 * TreeNode right; 7 * TreeNo...
分类:
其他好文 时间:
2014-09-10 01:35:19
阅读次数:
221
1. #define保护
所有头文件都应该使用#define 防止头文件被多重包吨(multiple inclusion),命名格式为:
___H_
为保证唯一性,头文件的命名应基亍其所在项目源代码树的全路径。例如,项目foo 中的头文件
foo/src/bar/baz.h按如下方式保护:
#ifndef FOO_BAR_BAZ_H_
#define FOO_...
分类:
编程语言 时间:
2014-09-09 21:35:40
阅读次数:
324
A collection of multipleusercredentialseach associated with one of multiple different users is obtained at a device, and one or more of the multipleus...
分类:
数据库 时间:
2014-09-09 21:21:19
阅读次数:
303
使用 Android 的人越来越多,每天都在增加。因此,当你想把你的应用成功地全球化时,通常的方法就是使应用程序本地化。 虽然本地化,你可以考虑使用依靠区域和国家适当的文字,音频,货币,数字和图形。但是,本文只涉及本地化的字符串,例如支持多国语言(multiple languages)。Locali...
分类:
移动开发 时间:
2014-09-09 15:15:49
阅读次数:
338
最近写了一个小的WPF程序,发布的时候发现依赖着两三个20~30k的小dll的,感觉有点不爽,就想把它合并一下。以前在WinForm下用过微软的ILMerge合并程序集,不过记得它对WPF程序支持不大好。便在网上搜了一下,找到了一种资源嵌入的方式Combining multiple assembli...
分类:
Web程序 时间:
2014-09-09 10:38:08
阅读次数:
273
递归,dfs这里返回值是一个pair,first表示两个子树的不经过当前root的最大pathsum;second表示两个子树的,以root->left和root->right为路径起始节点的路径的最大值 1 /** 2 * Definition for binary tree 3 * stru.....
分类:
其他好文 时间:
2014-09-07 19:43:15
阅读次数:
195
用两个队列实现,交叉使用,达到判断层的目的 1 /** 2 * Definition for binary tree 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right...
分类:
其他好文 时间:
2014-09-06 23:47:44
阅读次数:
261
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a multiple of k then le...
分类:
其他好文 时间:
2014-09-06 12:20:23
阅读次数:
171