码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
(easy)LeetCode 225.Implement Stack using Queues
Implement the following operations of a stack using queues.push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top()...
分类:其他好文   时间:2015-07-30 21:06:04    阅读次数:113
JVM性能调优(out of memory内存溢出/泄露出来)
JVM基础知识:JVM调优工具:1.jmapjmap常用参数命令:jmap -heap PID >> D:\heap.log解释:using thread-local object allocation. --- 使用本机线程分配Mark Sweep Compact GC ...
分类:其他好文   时间:2015-07-30 20:55:20    阅读次数:148
(线段树模板)A Simple Problem with Integers --POJ--3468
链接:http://poj.org/problem?id=3468代码: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 #define Lson r>1; 18 } 19 int len() 20...
分类:其他好文   时间:2015-07-30 18:54:35    阅读次数:102
《21天学会C++》学习笔记第7章控制程序流程
1、迭代意味着重复做同样的工作。迭代的主要方法是循环。2、while()循环,do...while()循环,for循环,3、注意do...while()循环的do是真的要出现的,不仅仅是一个标志而已: 1 #include 2 int main() 3 { 4 using namespace std...
分类:编程语言   时间:2015-07-30 18:50:59    阅读次数:152
委托、 Lambda表达式和事件——Lambda表达式
1 /* 2 * 由SharpDevelop创建。 3 * 用户: David Huang 4 * 日期: 2015/7/30 5 * 时间: 16:32 6 */ 7 using System; 8 9 namespace Lambda10 {11 class Program...
分类:其他好文   时间:2015-07-30 18:47:55    阅读次数:117
C#System.Net.Mail采用简单邮件传输协议发送邮件
引用:using System.Net.Mail;public class EmailHelper { public static bool SendEmail(string title, string body, string address) ...
分类:Windows程序   时间:2015-07-30 18:45:04    阅读次数:175
素数环(C - 暴力求解)
1 #include 2 #include 3 using namespace std; 4 5 int n, A[50], isp[50], vis[50]; 6 7 int is(int x) 8 { 9 for(int i = 2; i*i n (0 2 #include...
分类:其他好文   时间:2015-07-30 18:36:13    阅读次数:475
设计模式之 单例模式
#include #include using std::cout;using std::cin;using std::endl;using std::string;/*templateclass SingleInstance{protected: SingleInstance(void){}...
分类:其他好文   时间:2015-07-30 18:35:49    阅读次数:85
委托、 Lambda表达式和事件——委托
简单示例 1 /* 2 * 由SharpDevelop创建。 3 * 用户: David Huang 4 * 日期: 2015/7/27 5 * 时间: 10:22 6 */ 7 using System; 8 9 namespace Delegate_Book10 {11 cl...
分类:其他好文   时间:2015-07-30 18:32:30    阅读次数:131
What does the 11 mean in INT(11)?
What does the 11 mean in INT(11)? By Jeremy Smyth-Oracle on?Mar 26, 2014 If you create a table using a numeric type like?INT?or?BIGINT, you might have been surprised by the numbers that appear ...
分类:其他好文   时间:2015-07-30 17:19:34    阅读次数:125
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!