JAVA相关基础知识

来源:互联网 发布:linux国内软件源 编辑:程序博客网 时间:2024/05/16 17:17

101、java中会存在内存泄漏吗,请简单描述。
会。如:int i,i2; return (i-i2); //when i为足够大的正数,i2为足够大的负数。结果会造成溢位,导致错误。
102、java中实现多态的机制是什么?
方法的重写Overriding和重载Overloading是Java多态性的不同表现。重写Overriding是父类与子类之间多态性的一种表现,重载Overloading是一个类中多态性的一种表现。
103、垃圾回收器的基本原理是什么?垃圾回收器可以马上回收内存吗?有什么办法主动通知虚拟机进行垃圾回收?
对于GC来说,当程序员创建对象时,GC就开始监控这个对象的地址、大小以及使用情况。通常,GC采用有向图的方式记录和管理堆(heap)中的所有对象。通过这种方式确定哪些对象是"可达的",哪些对象是"不可达的"。当GC确定一些对象为"不可达"时,GC就有责任回收这些内存空间。可以。程序员可以手动执行System.gc(),通知GC运行,但是Java语言规范并不保证GC一定会执行。
104、静态变量和实例变量的区别?
static i = 10; //常量
class A a; a.i =10;//可变
105、什么是java序列化,如何实现java序列化?
序列化就是一种用来处理对象流的机制,所谓对象流也就是将对象的内容进行流化。可以对流化后的对象进行读写操作,也可将流化后的对象传输于网络之间。序列化是为了解决在对对象流进行读写操作时所引发的问题。
序列化的实现:将需要被序列化的类实现Serializable接口,该接口没有需要实现的方法,implements Serializable只是为了标注该对象是可被序列化的,然后使用一个输出流(如:FileOutputStream)来构造一个ObjectOutputStream(对象流)对象,接着,使用ObjectOutputStream对象的writeObject(Object obj)方法就可以将参数为obj的对象写出(即保存其状态),要恢复的话则用输入流。
106、是否可以从一个static方法内部发出对非static方法的调用?
不可以,如果其中包含对象的method();不能保证对象初始化.
107、写clone()方法时,通常都有一行代码,是什么?
Clone 有缺省行为,super.clone();他负责产生正确大小的空间,并逐位复制。
108、在JAVA中,如何跳出当前的多重嵌套循环?
用break; return 方法。
109、List、Map、Set三个接口,存取元素时,各有什么特点?
List 以特定次序来持有元素,可有重复元素。Set 无法拥有重复元素,内部排序。Map 保存key-value值,value可多值。
110、J2EE是什么?
J2EE是Sun公司提出的多层(multi-diered),分布式(distributed),基于组件(component-base)的企业级应用模型(enterpriese application model).在这样的一个应用系统中,可按照功能划分为不同的组件,这些组件又可在不同计算机上,并且处于相应的层次(tier)中。所属层次包括客户层(clietn tier)组件,web层和组件,Business层和组件,企业信息系统(EIS)层。
111、UML方面 
标准建模语言UML。用例图,静态图(包括类图、对象图和包图),行为图,交互图(顺序图,合作图),实现图。
112、说出一些常用的类,包,接口,请各举5个
常用的类:BufferedReader BufferedWriter FileReader FileWirter String Integer
常用的包:java.lang java.awt java.io java.util java.sql
常用的接口:Remote List Map Document NodeList 
113、开发中都用到了那些设计模式?用在什么场合? 
每个模式都描述了一个在我们的环境中不断出现的问题,然后描述了该问题的解决方案的核心。通过这种方式,你可以无数次地使用那些已有的解决方案,无需在重复相同的工作。主要用到了MVC的设计模式。用来开发JSP/Servlet或者J2EE的相关应用。简单工厂模式等。
114、jsp有哪些动作?作用分别是什么? 
JSP共有以下6种基本动作 jsp:include:在页面被请求的时候引入一个文件。 jsp:useBean:寻找或者实例化一个JavaBean。 jsp:setProperty:设置JavaBean的属性。 jsp:getProperty:输出某个JavaBean的属性。 jsp:forward:把请求转到一个新的页面。 jsp:plugin:根据浏览器类型为Java插件生成OBJECT或EMBED标记。
115、Anonymous Inner Class (匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)? 
可以继承其他类或完成其他接口,在swing编程中常用此方式。
116、应用服务器与WEB SERVER的区别?
应用服务器:Weblogic、Tomcat、Jboss
WEB SERVER:IIS、 Apache
117、BS与CS的联系与区别。
C/S是Client/Server的缩写。服务器通常采用高性能的PC、工作站或小型机,并采用大型数据库系统,如Oracle、Sybase、Informix或 SQL Server。客户端需要安装专用的客户端软件。
B/S是Brower/Server的缩写,客户机上只要安装一个浏览器(Browser),如Netscape Navigator或Internet Explorer,服务器安装Oracle、Sybase、Informix或 SQL Server等数据库。在这种结构下,用户界面完全通过WWW浏览器实现,一部分事务逻辑在前端实现,但是主要事务逻辑在服务器端实现。浏览器通过Web Server 同数据库进行数据交互。
C/S 与 B/S 区别: 
1.硬件环境不同: 
  C/S 一般建立在专用的网络上, 小范围里的网络环境, 局域网之间再通过专门服务器提供连接和数据交换服务.
  B/S 建立在广域网之上的, 不必是专门的网络硬件环境,例与电话上网, 租用设备. 信息自己管理. 有比C/S更强的适应范围, 一般只要有操作系统和浏览器就行 
2.对安全要求不同 
  C/S 一般面向相对固定的用户群, 对信息安全的控制能力很强. 一般高度机密的信息系统采用C/S 结构适宜. 可以通过B/S发布部分可公开信息.
  B/S 建立在广域网之上, 对安全的控制能力相对弱, 可能面向不可知的用户。
3.对程序架构不同 
  C/S 程序可以更加注重流程, 可以对权限多层次校验, 对系统运行速度可以较少考虑.
  B/S 对安全以及访问速度的多重的考虑, 建立在需要更加优化的基础之上. 比C/S有更高的要求 B/S结构的程序架构是发展的趋势, 从MS的.Net系列的BizTalk 2000 Exchange 2000等, 全面支持网络的构件搭建的系统. SUN 和IBM推的JavaBean 构件技术等,使 B/S更加成熟. 
4.软件重用不同 
  C/S 程序可以不可避免的整体性考虑, 构件的重用性不如在B/S要求下的构件的重用性好.
  B/S 对的多重结构,要求构件相对独立的功能. 能够相对较好的重用.就入买来的餐桌可以再利用,而不是做在墙上的石头桌子 
5.系统维护不同 
  C/S 程序由于整体性, 必须整体考察, 处理出现的问题以及系统升级. 升级难. 可能是再做一个全新的系统
  B/S 构件组成,方面构件个别的更换,实现系统的无缝升级. 系统维护开销减到最小.用户从网上自己下载安装就可以实现升级. 
6.处理问题不同 
  C/S 程序可以处理用户面固定, 并且在相同区域, 安全要求高需求, 与操作系统相关. 应该都是相同的系统
  B/S 建立在广域网上, 面向不同的用户群, 分散地域, 这是C/S无法作到的. 与操作系统平台关系最小. 
7.用户接口不同 
  C/S 多是建立的Window平台上,表现方法有限,对程序员普遍要求较高
  B/S 建立在浏览器上, 有更加丰富和生动的表现方式与用户交流. 并且大部分难度减低,减低开发成本. 
8.信息流不同 
  C/S 程序一般是典型的中央集权的机械式处理, 交互性相对低
  B/S 信息流向可变化, B-B B-C B-G等信息、流向的变化, 更像交易中心。
118、LINUX下线程,GDI类的解释。
LINUX实现的就是基于核心轻量级进程的"一对一"线程模型,一个线程实体对应一个核心轻量级进程,而线程之间的管理在核外函数库中实现。 
GDI类为图像设备编程接口类库。
119、STRUTS的应用(如STRUTS架构) 
Struts是采用Java Servlet/JavaServer Pages技术,开发Web应用程序的开放源码的framework。 采用Struts能开发出基于MVC(Model-View-Controller)设计模式的应用构架。 Struts有如下的主要功能: 一.包含一个controller servlet,能将用户的请求发送到相应的Action对象。 二.JSP自由tag库,并且在controller servlet中提供关联支持,帮助开发员创建交互式表单应用。 三.提供了一系列实用对象:XML处理、通过Java reflection APIs自动处理JavaBeans属性、国际化的提示和消息。
120、Jdo是什么? 
JDO是Java对象持久化的新的规范,为java data object的简称,也是一个用于存取某种数据仓库中的对象的标准化API。JDO提供了透明的对象存储,因此对开发人员来说,存储数据对象完全不需要额外的代码(如JDBC API的使用)。这些繁琐的例行工作已经转移到JDO产品提供商身上,使开发人员解脱出来,从而集中时间和精力在业务逻辑上。另外,JDO很灵活,因为它可以在任何数据底层上运行。JDBC只是面向关系数据库(RDBMS)JDO更通用,提供到任何数据底层的存储功能,比如关系数据库、文件、XML以及对象数据库(ODBMS)等等,使得应用可移植性更强。

121、内部类可以引用他包含类的成员吗?有没有什么限制?
一个内部类对象可以访问创建它的外部类对象的内容
122、WEB SERVICE名词解释。JSWDL开发包的介绍。JAXP、JAXM的解释。SOAP、UDDI,WSDL解释。 
Web ServiceWeb Service是基于网络的、分布式的模块化组件,它执行特定的任务,遵守具体的技术规范,这些规范使得Web Service能与其他兼容的组件进行互操作。
JAXP(Java API for XML Parsing) 定义了在Java中使用DOM, SAX, XSLT的通用的接口。这样在你的程序中你只要使用这些通用的接口,当你需要改变具体的实现时候也不需要修改代码。
JAXM(Java API for XML Messaging) 是为SOAP通信提供访问方法和传输机制的API。
WSDL是一种 XML 格式,用于将网络服务描述为一组端点,这些端点对包含面向文档信息或面向过程信息的消息进行操作。这种格式首先对操作和消息进行抽象描述,然后将其绑定到具体的网络协议和消息格式上以定义端点。相关的具体端点即组合成为抽象端点(服务)。
SOAP即简单对象访问协议(Simple Object Access Protocol),它是用于交换XML编码信息的轻量级协议。 
UDDI 的目的是为电子商务建立标准;UDDI是一套基于Web的、分布式的、为Web Service提供的、信息注册中心的实现标准规范,同时也包含一组使企业能将自身提供的Web Service注册,以使别的企业能够发现的访问协议的实现标准。


http://v.17173.com/playlist_15876575?retcode=0
http://v.17173.com/playlist_15876620?retcode=0
http://v.17173.com/playlist_15876669?retcode=0
http://v.17173.com/playlist_15876721?retcode=0
http://v.17173.com/playlist_15876994?retcode=0
http://v.17173.com/playlist_15877073?retcode=0
http://v.17173.com/playlist_15877114?retcode=0
http://v.17173.com/playlist_15877193?retcode=0
http://v.17173.com/playlist_15877226?retcode=0
http://v.17173.com/playlist_15877272?retcode=0
http://v.17173.com/playlist_15877314?retcode=0
http://v.17173.com/playlist_15877348?retcode=0
http://v.17173.com/playlist_15877380?retcode=0
http://v.17173.com/playlist_15877412?retcode=0
http://v.17173.com/playlist_15877440?retcode=0
http://v.17173.com/playlist_15877475?retcode=0
http://v.17173.com/playlist_15877527?retcode=0
http://v.17173.com/playlist_15877553?retcode=0
http://v.17173.com/playlist_15877584?retcode=0
http://v.17173.com/playlist_15877609?retcode=0
http://v.17173.com/playlist_15877698?retcode=0
http://v.17173.com/playlist_15877728?retcode=0
http://v.17173.com/playlist_15877773?retcode=0
http://v.17173.com/playlist_15877831?retcode=0
http://v.17173.com/playlist_15877877?retcode=0
http://v.17173.com/playlist_15877910?retcode=0
http://v.17173.com/playlist_15877964?retcode=0
http://v.17173.com/playlist_15878006?retcode=0
http://v.17173.com/playlist_15878063?retcode=0
http://v.17173.com/playlist_15878122?retcode=0
http://v.17173.com/playlist_15878153?retcode=0
http://v.17173.com/playlist_15878188?retcode=0
http://v.17173.com/playlist_15878235?retcode=0
http://v.17173.com/playlist_15878324?retcode=0
http://v.17173.com/playlist_15878375?retcode=0
http://v.17173.com/playlist_15878455?retcode=0
http://v.17173.com/playlist_15878502?retcode=0
http://v.17173.com/playlist_15878531?retcode=0
http://v.17173.com/playlist_15878607?retcode=0
http://v.17173.com/playlist_15878639?retcode=0
http://v.17173.com/playlist_15878668?retcode=0
http://v.17173.com/playlist_15878759?retcode=0
http://v.17173.com/playlist_15878796?retcode=0
http://v.17173.com/playlist_15878858?retcode=0
http://v.17173.com/playlist_15878897?retcode=0
http://v.17173.com/playlist_15878934?retcode=0
http://v.17173.com/playlist_15878970?retcode=0
http://v.17173.com/playlist_15879033?retcode=0
http://v.17173.com/playlist_15879121?retcode=0
http://v.17173.com/playlist_15879155?retcode=0
http://v.17173.com/playlist_15879194?retcode=0
http://v.17173.com/playlist_15879264?retcode=0
http://v.17173.com/playlist_15879297?retcode=0
http://v.17173.com/playlist_15879422?retcode=0
http://v.17173.com/playlist_15879468?retcode=0
http://v.17173.com/playlist_15879502?retcode=0
http://v.17173.com/playlist_15879588?retcode=0
http://v.17173.com/playlist_15879698?retcode=0
http://v.17173.com/playlist_15879787?retcode=0
http://v.17173.com/playlist_15879847?retcode=0
http://v.17173.com/playlist_15882791?retcode=0
http://v.17173.com/playlist_15882832?retcode=0
http://v.17173.com/playlist_15882897?retcode=0
http://v.17173.com/playlist_15883034?retcode=0
http://v.17173.com/playlist_15883172?retcode=0
http://v.17173.com/playlist_15883343?retcode=0
http://v.17173.com/playlist_15883739?retcode=0
http://v.17173.com/playlist_15883806?retcode=0
http://v.17173.com/playlist_15883863?retcode=0
http://v.17173.com/playlist_15883907?retcode=0
http://v.17173.com/playlist_15883997?retcode=0
http://v.17173.com/playlist_15884047?retcode=0
http://v.17173.com/playlist_15884097?retcode=0
http://v.17173.com/playlist_15884187?retcode=0
http://v.17173.com/playlist_15884238?retcode=0
http://v.17173.com/playlist_15884294?retcode=0
http://v.17173.com/playlist_15884352?retcode=0
http://v.17173.com/playlist_15884402?retcode=0
http://v.17173.com/playlist_15884458?retcode=0
http://v.17173.com/playlist_15884512?retcode=0
http://v.17173.com/playlist_15884614?retcode=0
http://v.17173.com/playlist_15885018?retcode=0
http://v.17173.com/playlist_15885086?retcode=0
http://v.17173.com/playlist_15885126?retcode=0
http://v.17173.com/playlist_15885165?retcode=0
http://v.17173.com/playlist_15885214?retcode=0
http://v.17173.com/playlist_15885277?retcode=0
http://v.17173.com/playlist_15885365?retcode=0
http://v.17173.com/playlist_15885465?retcode=0
http://v.17173.com/playlist_15885609?retcode=0
http://v.17173.com/playlist_15885681?retcode=0
http://v.17173.com/playlist_15885783?retcode=0
http://v.17173.com/playlist_15886145?retcode=0
http://v.17173.com/playlist_15886197?retcode=0
http://v.17173.com/playlist_15886246?retcode=0
http://v.17173.com/playlist_15886331?retcode=0
http://v.17173.com/playlist_15886491?retcode=0
http://v.17173.com/playlist_15886565?retcode=0
http://v.17173.com/playlist_15886599?retcode=0
http://v.17173.com/playlist_15886674?retcode=0
http://v.17173.com/playlist_15886746?retcode=0
http://v.17173.com/playlist_15887391?retcode=0
http://v.17173.com/playlist_15887533?retcode=0
http://v.17173.com/playlist_15887607?retcode=0
http://v.17173.com/playlist_15888028?retcode=0
http://v.17173.com/playlist_15888073?retcode=0
http://v.17173.com/playlist_15888120?retcode=0
http://v.17173.com/playlist_15888209?retcode=0
http://v.17173.com/playlist_15888287?retcode=0
http://v.17173.com/playlist_15888342?retcode=0
http://v.17173.com/playlist_15888468?retcode=0
http://v.17173.com/playlist_15888506?retcode=0
http://v.17173.com/playlist_15888555?retcode=0
http://v.17173.com/playlist_15888703?retcode=0
http://v.17173.com/playlist_15888747?retcode=0
http://v.17173.com/playlist_15888859?retcode=0
http://www.huihui.cn/share/32814324
http://www.huihui.cn/share/32814392
http://www.huihui.cn/share/32814494
http://www.huihui.cn/share/32814532
http://www.huihui.cn/share/32814748
http://www.huihui.cn/share/32814894
http://www.huihui.cn/share/32815046
http://www.huihui.cn/share/32815140
http://www.huihui.cn/share/32815182
http://www.huihui.cn/share/32815298
http://www.huihui.cn/share/32815384
http://www.huihui.cn/share/32815496
http://www.huihui.cn/share/32815562
http://www.huihui.cn/share/32815612
http://www.huihui.cn/share/32815778
http://www.huihui.cn/share/32815828
http://www.huihui.cn/share/32815922
http://www.huihui.cn/share/32816116
http://www.huihui.cn/share/32816304
http://www.huihui.cn/share/32816424
http://www.huihui.cn/share/32816540
http://www.huihui.cn/share/32816688
http://www.huihui.cn/share/32816896
http://www.huihui.cn/share/32817028
http://www.huihui.cn/share/32817086
http://www.huihui.cn/share/32817152
http://www.huihui.cn/share/32817226
http://www.huihui.cn/share/32817290
http://www.huihui.cn/share/32817350
http://www.huihui.cn/share/32817418
http://www.huihui.cn/share/32817582
http://www.huihui.cn/share/32817710
http://www.huihui.cn/share/32817826
http://www.huihui.cn/share/32817898
http://www.huihui.cn/share/32817960
http://www.huihui.cn/share/32818050
http://www.huihui.cn/share/32818156
http://www.huihui.cn/share/32818212
http://www.huihui.cn/share/32818294
http://www.huihui.cn/share/32818418
http://www.huihui.cn/share/32818528
http://www.huihui.cn/share/32818648
http://www.huihui.cn/share/32818714
http://www.huihui.cn/share/32818948
http://www.huihui.cn/share/32819078
http://www.huihui.cn/share/32819168
http://www.huihui.cn/share/32819268
http://www.huihui.cn/share/32819502
http://www.huihui.cn/share/32819604
http://www.huihui.cn/share/32819646
http://www.huihui.cn/share/32819696
http://www.huihui.cn/share/32819758
http://www.huihui.cn/share/32819818
http://www.huihui.cn/share/32819996
http://www.huihui.cn/share/32820142
http://www.huihui.cn/share/32820206
http://www.huihui.cn/share/32820264
http://www.huihui.cn/share/32820356
http://www.huihui.cn/share/32820414
http://www.huihui.cn/share/32820500
http://www.huihui.cn/share/32820596
http://www.huihui.cn/share/32820654
http://www.huihui.cn/share/32820772
http://www.huihui.cn/share/32820842
http://www.huihui.cn/share/32820962
http://www.huihui.cn/share/32821010
http://www.huihui.cn/share/32821062
http://www.huihui.cn/share/32821148
http://www.huihui.cn/share/32821204
http://www.huihui.cn/share/32821250
http://www.huihui.cn/share/32821332
http://www.huihui.cn/share/32821444
http://www.huihui.cn/share/32821624
http://www.huihui.cn/share/32821740
http://www.huihui.cn/share/32821832
http://www.huihui.cn/share/32821914
http://www.huihui.cn/share/32821996
http://www.huihui.cn/share/32822090
http://www.huihui.cn/share/32822278
http://www.huihui.cn/share/32822722
http://www.huihui.cn/share/32823112
http://www.huihui.cn/share/32823194
http://www.huihui.cn/share/32823282
http://www.huihui.cn/share/32823380
http://www.huihui.cn/share/32823470
http://www.huihui.cn/share/32823668
http://www.huihui.cn/share/32823730
http://www.huihui.cn/share/32823930
http://www.huihui.cn/share/32823980
http://www.huihui.cn/share/32824054
http://www.huihui.cn/share/32824150
http://www.huihui.cn/share/32824228
http://www.huihui.cn/share/32824350
http://www.huihui.cn/share/32824416
http://www.huihui.cn/share/32824496
http://www.huihui.cn/share/32824576
http://www.huihui.cn/share/32824638
http://www.huihui.cn/share/32824682
http://www.huihui.cn/share/32824744
http://www.huihui.cn/share/32824816
http://www.huihui.cn/share/32825416
http://www.huihui.cn/share/32825480
http://www.huihui.cn/share/32825558
http://www.huihui.cn/share/32825682
http://www.huihui.cn/share/32825798
http://www.huihui.cn/share/32825904
http://www.huihui.cn/share/32825962
http://www.huihui.cn/share/32826048
http://www.huihui.cn/share/32826118
http://www.huihui.cn/share/32826252
http://www.huihui.cn/share/32826374
http://www.huihui.cn/share/32826456
http://www.huihui.cn/share/32826524
http://www.huihui.cn/share/32826584
http://www.huihui.cn/share/32826700
http://www.huihui.cn/share/32826814
http://ycool.com/post/g9zd7gp
http://ycool.com/post/ynd3xkn
http://ycool.com/post/ddy7uy4
http://ycool.com/post/rc9tmq7
http://ycool.com/post/rsq4ree
http://ycool.com/post/z74jnt7
http://ycool.com/post/hxcpt5j
http://ycool.com/post/m3a2yzn
http://ycool.com/post/xuuhbc6
http://ycool.com/post/ef643xj
http://ycool.com/post/sc3ux6j
http://ycool.com/post/r9h3fkv
http://ycool.com/post/45rf5yg
http://ycool.com/post/xb796ru
http://ycool.com/post/4xgyx3v
http://ycool.com/post/9dz8e87
http://ycool.com/post/4v52ztj
http://ycool.com/post/jjgqkjj
http://ycool.com/post/bzf88ar
http://ycool.com/post/ffg9zxt
http://ycool.com/post/munbyv9
http://ycool.com/post/evd466r
http://ycool.com/post/b292aeq
http://ycool.com/post/yeb4y7c
http://ycool.com/post/4zkv7xj
http://ycool.com/post/yardshm
http://ycool.com/post/vmq98cc
http://ycool.com/post/fu55rn6
http://ycool.com/post/wj3bepc
http://ycool.com/post/3mkfujd
http://ycool.com/post/bxveebm
http://ycool.com/post/tau89q6
http://ycool.com/post/uq8du6u
http://ycool.com/post/k3a7zxf
http://ycool.com/post/3wpk9x8
http://ycool.com/post/s2h8746
http://ycool.com/post/xw8kc8r
http://ycool.com/post/58snqss
http://ycool.com/post/7rceu4g
http://ycool.com/post/vhw3szv
http://ycool.com/post/82vbhxk
http://ycool.com/post/m5sjfnd
http://ycool.com/post/vkvkxug
http://ycool.com/post/626wy7v
http://ycool.com/post/jba4qyw
http://ycool.com/post/mpknrnx
http://ycool.com/post/mm42uwz
http://ycool.com/post/6quhbjp
http://ycool.com/post/hsugu43
http://ycool.com/post/q57s7v8
http://ycool.com/post/7rcrjmd
http://ycool.com/post/dpn5hfd
http://ycool.com/post/j92j9n8
http://ycool.com/post/a6eus7m
http://ycool.com/post/dtqmjh8
http://ycool.com/post/a6qxrkm
http://ycool.com/post/xsk457k
http://ycool.com/post/b95zjgh
http://ycool.com/post/megdqxf
http://ycool.com/post/d3khjf5
http://ycool.com/post/qjtmzry
http://ycool.com/post/aqb6jyq
http://ycool.com/post/cp98tv4
http://ycool.com/post/mqt32wp
http://ycool.com/post/szk4snd
http://ycool.com/post/rqsrytm
http://ycool.com/post/u96q2mf
http://ycool.com/post/svhrgh5
http://ycool.com/post/ze8akv6
http://ycool.com/post/wb5sse4
http://ycool.com/post/yjzu2k3
http://ycool.com/post/vu6xkjd
http://ycool.com/post/azgh44q
http://ycool.com/post/e9z9x5b
http://ycool.com/post/tb5fruf
http://ycool.com/post/fc2q8jm
http://ycool.com/post/7as4erz
http://ycool.com/post/5zmvt4m
http://ycool.com/post/etp3w8d
http://ycool.com/post/k2bt278
http://ycool.com/post/fgqcrvr
http://t.163.com/event/info/eventId/8564006048693590530
http://t.163.com/event/info/eventId/8858107697125982736
http://t.163.com/event/info/eventId/1842432775415591006
http://www.zhihu.com/collection/33341516
http://www.zhihu.com/collection/33341704
http://www.zhihu.com/collection/33341938
http://www.zhihu.com/collection/33342123
http://www.zhihu.com/collection/33342337
http://www.zhihu.com/collection/33342570
http://www.zhihu.com/collection/33342805
http://www.zhihu.com/collection/33343053
http://www.zhihu.com/collection/33343347
http://www.zhihu.com/collection/33343594
http://www.zhihu.com/collection/33343795
http://www.zhihu.com/collection/33344028
http://www.zhihu.com/collection/33344328
http://www.zhihu.com/collection/33345863
http://www.zhihu.com/collection/33347149
http://www.zhihu.com/collection/33347403
http://www.zhihu.com/collection/33347652
http://www.zhihu.com/collection/33347937
http://www.zhihu.com/collection/33348162
http://www.zhihu.com/collection/33348424
http://www.zhihu.com/collection/33348702
http://www.zhihu.com/collection/33348978
http://home.eduu.com/4508113/blog/3592995
http://home.eduu.com/4508113/blog/3594368
http://home.eduu.com/4508113/blog/3597013
http://home.eduu.com/4508113/blog/3597524
http://home.eduu.com/4508113/blog/3598319
http://home.eduu.com/4508113/blog/3598876
http://www.zhihu.com/collection/33422361
http://www.zhihu.com/collection/33422801
http://www.zhihu.com/collection/33423013
http://www.zhihu.com/collection/33423228
http://www.zhihu.com/collection/33423495
http://www.zhihu.com/collection/33423732
http://www.zhihu.com/collection/33424037
http://www.zhihu.com/collection/33424250
http://www.zhihu.com/collection/33424453
http://www.zhihu.com/collection/33424898
http://www.zhihu.com/collection/33426403
http://www.zhihu.com/collection/33427140
http://www.zhihu.com/collection/33427302
http://www.zhihu.com/collection/33427622
http://www.zhihu.com/collection/33427908
http://www.zhihu.com/collection/33428113
http://www.zhihu.com/collection/33428382
http://www.zhihu.com/collection/33428537
http://www.zhihu.com/collection/33428685
http://www.zhihu.com/collection/33428785
http://www.zhihu.com/collection/33428973
http://www.zhihu.com/collection/33429169
http://www.zhihu.com/collection/33429292
http://www.zhihu.com/collection/33429468
http://www.zhihu.com/collection/33429584
http://www.zhihu.com/collection/33429726
http://www.zhihu.com/collection/33426325
http://www.zhihu.com/collection/33426227
http://www.zhihu.com/collection/33426046
http://www.zhihu.com/collection/33426144
http://www.zhihu.com/collection/33425947
http://www.zhihu.com/collection/33425878
http://www.zhihu.com/collection/33425806

http://blog.sina.com.cn/u/2215381651
http://j.map.baidu.com/Ar3Ph
http://zhuanshuyu.blog.tianya.cn/
http://shangyufeng01.blog.163.com/

0 0
原创粉丝点击