学习面向对象的语言,要弄清楚面向对象,首先要从理解面向过程开始。回想起之前在学习C语言时,每次拿到一个题目,首先想到的是,先分析出解决问题所需要的步骤,每一个功能点,用一个函数来表示,使用的时候一个一个进行调用就好了,程序的重心在函数上(谓语);面向对象,就是要把问题事务分解成各个对象,建立对象的目...
分类:
编程语言 时间:
2015-11-03 22:57:39
阅读次数:
212
# Definition for singly-linked list.# class ListNode(object):# def __init__(self, x):# self.val = x# self.next = Noneclass Solutio...
分类:
编程语言 时间:
2015-11-03 22:58:28
阅读次数:
197
1. XA-2PC (two phase commit, 两阶段提交 )XA是由X/Open组织提出的分布式事务的规范(X代表transaction; A代表accordant?)。XA规范主要定义了(全局)事务管理器(TM: Transaction Manager)和(局部)资源管理器(RM: R...
分类:
数据库 时间:
2015-11-03 22:57:20
阅读次数:
377
文章转自:C++箴言:理解typename的两个含义问题:在下面的 template declarations(模板声明)中 class 和 typename 有什么不同?template class Widget; // uses "class"template class Widget; // ...
分类:
编程语言 时间:
2015-11-03 22:56:31
阅读次数:
261
我们在我们Server的gc log上经常看到下面的这个日志:总结一下各个字段表达的是什么意思: Young GCFull GC:
分类:
其他好文 时间:
2015-11-03 22:55:07
阅读次数:
206
有包发生了冲突,有可能是你当前ide的v4或v7包和导入项目原有的v4、v7jar包不同,有冲突
分类:
移动开发 时间:
2015-11-03 22:54:56
阅读次数:
198
以下代码主要实现了:1、截取"@@"前的字符串; 2、去掉字符串中的"##"; 3、去掉字符串中的空格和换行。希望相互学习相互指正。-----ViewController.m内容如下:------#import "ViewController.h"#import "HandleString.h"@i...
分类:
移动开发 时间:
2015-11-03 22:54:25
阅读次数:
223
无规矩不成方圆,新的岗位就需要服从团队的编码规则。很开心团队用的是Google的C++编码规则,大概看了下Google 的编码规则,正如九天翔雁说的:“Google的 C++ Style Guide远不仅是一个传统意义上的代码书写风格指导,对于C++的方方面面做出了Google的解释和使用建议,包括...
分类:
编程语言 时间:
2015-11-03 22:55:57
阅读次数:
250
除了listview会使用适配器外,还有一种就是GridView,listview是单列多行的显示形式,适用于多项目的查看。而GridView是多行多列的显示形式,一般用在查看图片样式的activity中。一个小demo。每一项都是一个图片下面一行文字。GirdView的一些属性:android.....
分类:
移动开发 时间:
2015-11-03 22:56:04
阅读次数:
235
转自 :http://www.cnblogs.com/panshengqiang/p/3605599.html下面是两位大牛关于Memcached的介绍;大家可以看看http://zhoufoxcn.blog.51cto.com/792419/528212http://leepiao.blog.16...
分类:
系统相关 时间:
2015-11-03 22:54:38
阅读次数:
308
#http://www.cnblogs.com/bluescorpio/p/4303656.html?在遇到错误提示时,注意查看错误提示内容,同时注意查看type类型。1、TypeError: decoding Unicode is not supported在试图读取网页的时候遇到TypeErro...
分类:
编程语言 时间:
2015-11-03 22:55:48
阅读次数:
166
临时做个小项目,初学AJAX,遇到个小问题。网上搜到了。现在MARK一下。 $.ajax({type:"post",url:"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",dataType:"json",data:{User:username.value,PassWord:use...
分类:
Web程序 时间:
2015-11-03 22:54:21
阅读次数:
188
#include #include typedef struct List{ int data; struct List *next;}List;//创建循环单向链表n为长度List *list_create(int n){ List *head, *p; int i;...
分类:
其他好文 时间:
2015-11-03 22:52:25
阅读次数:
192
1.添加模型类: public class Product { public int Id { get; set; } public string Name { get; set; } public string Category { get; s...
分类:
Web程序 时间:
2015-11-03 22:51:54
阅读次数:
176
typeof 100"number"typeof udf //未声明的变量udf"undefined"typeof []"object"typeof function(){}"function"typeof {x:1}"object"typeof null"object"Object.protot....
分类:
Web程序 时间:
2015-11-03 22:53:45
阅读次数:
196
HTTP协议中,定义了8种发送http请求的方法get , post,options, head ,put ,delete ,trace ,connect, patch根据HTTP协议的设计初衷,不同的方法对资源有不同的操作方式:put : 增delete : 删post :改get : 查提示:最...
分类:
移动开发 时间:
2015-11-03 22:53:55
阅读次数:
294