通过上次的练习,我已对单一的条件结构已经掌握纯熟,恰逢老师布置的周末作业中,有一道思考题,对条件结构知识点考究比较多,我忍不住有拿出来看看。题目是:任意输入一个年
月 日 的日期,输出这是这一年的第几天。例如:1月1日 是这年的第1天,12月31日,是这年的365天或则是366天(因为有闰年会多一天...
分类:
其他好文 时间:
2014-04-28 18:34:52
阅读次数:
629
今天朋友问我String的内容是真的不可变吗?我肯定告诉他是的?因为在我的主观意识里String就是一个不可变的对象。于是他给我发了这段程序:
public class StringTest { public static void main(String[] args) ...
分类:
编程语言 时间:
2014-04-28 18:21:08
阅读次数:
722
放置方法的程序单元是类,类中提供一个或多个方法,为类执行任务。方法执行一个任务,并可返回一个结果。类的实例称为对象。给对象发送消息称为一个方法调用,告诉对象要执行一个任务。对象有属性,可以在程序中使用,这些属性在对象的类中用字段指定属性。public
class Count//每个类声明包含关键字c...
分类:
其他好文 时间:
2014-04-28 16:18:47
阅读次数:
472
12345678910111213#include void main(){char
*sa="sdhshdh";char *sb="cdehhhhsdssssd";printf("%d , %d
\n",strlen(sa),strlen(sb));if(strlen(sa)-strlen(sb)...
分类:
其他好文 时间:
2014-04-28 15:27:16
阅读次数:
473
代码: 1 /* 2 test.java 3 */ 4 package test; 5
public class test { 6 public static void main(String args[] ) 7 { 8 CPU ccp= new
CPU();...
分类:
编程语言 时间:
2014-04-28 14:04:45
阅读次数:
439
答:泛型是 C# 2.0 开始引入的一种更加灵活、规范的数据操作机制,看例子: class
Student{} 假设有学生对象需要存入集合,再提取出来 ArrayList list = new ArrayList(); //1、实例化 list
集合对象 Student s = new Studen...
分类:
其他好文 时间:
2014-04-28 12:10:06
阅读次数:
520
Page 30Perceptual blocks are obstacles that
prevent the problem-solver from clearly perceiving either the problem itself or
the information needed to ...
分类:
其他好文 时间:
2014-04-28 00:54:37
阅读次数:
403
本人有一段代码关于"~"运算符 public class m{ public static
void main(String[] args){ int x=~5; System.out.println(x); ...
分类:
其他好文 时间:
2014-04-28 00:48:41
阅读次数:
326
C++ Primer 5E 有符号和无符号
无符号类型和有符号类型混合运算时,有符号数会被提升至无符号类型,如果其值为负责会产生错误。 int main(){ unsigned int u = 10;
int i = -42; std::cout using Vec = vector>;auto和d...
分类:
编程语言 时间:
2014-04-28 00:19:15
阅读次数:
575