上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 64 下一页
摘要: We define the Perfect Number is a positive integer that is equal to the sum of all its positive divisors except itself. Now, given an integer n, write 阅读全文
posted @ 2017-11-20 09:49 __Meng 阅读(175) 评论(0) 推荐(0) 编辑
摘要: Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library functio 阅读全文
posted @ 2017-11-19 22:10 __Meng 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 静态类型,即是变量声明时的类型 实际类型,变量实例化时采用的类型 静态分派 输出: hello,guy! hello,guy! Human man=new Man(); 我们把“Human”称为变量的静态类型,后面的“Man”称为变量的实际类型 编译器在编译期并不知道一个对象的实际类型是什么 编译器 阅读全文
posted @ 2017-11-19 17:17 __Meng 阅读(2253) 评论(0) 推荐(0) 编辑
摘要: 对象创建方法: JVM遇到一条new指令时,首先检查这个指令的参数是否能在常量池中定位到一个类的符号引用,并且检查这个符号引用代表的类是否已被加载、连接和初始化过。 如果没有,那必须先执行相应的类的加载过程。 对象的内存分配: 对象所需内存的大小在类加载完成后便完全确定(对象内存布局),为对象分配空 阅读全文
posted @ 2017-11-19 14:09 __Meng 阅读(2836) 评论(0) 推荐(0) 编辑
摘要: Write a program to check whether a given number is an ugly number. Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For exa 阅读全文
posted @ 2017-11-18 13:24 __Meng 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Given a non-negative integer c, your task is to decide whether there're two integers a and b such that a2 + b2 = c. Example 1: Example 2: java(14ms): 阅读全文
posted @ 2017-11-17 09:54 __Meng 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 一个功能健全的Web服务器,要解决如下几个问题: 部署在同一个服务器上的两个Web应用程序使用的Java 类库可以实现相互隔离。不能要求一个类库在一个服务器中只有一份,服务器应当保证两个应用程序的类库可以互相独立使用。 部署在同一个服务器上的两个Web应用程序所使用的Java类库可以互相共享,如果J 阅读全文
posted @ 2017-11-16 17:46 __Meng 阅读(1852) 评论(0) 推荐(0) 编辑
摘要: Java 提供了很多服务提供者接口(Service Provider Interface,SPI),允许第三方为这些接口提供实现。常见的 SPI 有 JDBC、JCE、JNDI、JAXP 和 JBI 等。 这些 SPI 的接口由 Java 核心库来提供,而这些 SPI 的实现代码则是作为 Java 阅读全文
posted @ 2017-11-16 16:53 __Meng 阅读(3136) 评论(1) 推荐(0) 编辑
摘要: Java中的所有类,都需要由类加载器装载到JVM中才能运行。类加载器本身也是一个类,而它的工作就是把class文件从硬盘读取到内存中。在写程序的时候,我们几乎不需要关心类的加载,因为这些都是隐式装载的,除非我们有特殊的用法,像是反射,就需要显式的加载所需要的类。 类装载方式,有两种 : 1.隐式装载 阅读全文
posted @ 2017-11-16 16:51 __Meng 阅读(8928) 评论(0) 推荐(0) 编辑
摘要: Determine whether an integer is a palindrome. Do this without extra space. 判断一个数是不是回文数 C++(182ms): Java(188ms): 阅读全文
posted @ 2017-11-16 15:38 __Meng 阅读(161) 评论(0) 推荐(0) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 64 下一页