我的编程乐园
积累,坚持!
---------我是一只IT小小鸟
首页
新随笔
联系
聚合
管理
随笔-145 评论-173 文章-70 trackbacks-0
发Java手写代码。
1
public
class
ArrayDemo
{
2
public
static
void
main(String[] args)
{
3
int
[] anArray; anArray
=
new
int
[
10
];
4
for
(
int
i
=
0
; i
<
anArray.length; i
++
)
{
5
anArray[i]
=
i;
6
System.out.println(anArray[i]
+
"
"
);
7
}
8
System.out.println();
9
}
10
}
11
1
public
class
ArrayOfIntergersDemo
{
2
public
static
void
main(String[] args)
{
3
Integer[] anArray
=
new
Integer[
5
];
4
for
(
int
i
=
0
; i
<
anArray.length; i
++
)
{
5
anArray[i]
=
new
Integer(i);
6
System.out.println(anArray[i]);
7
}
8
}
9
}
10
1
public
class
ArrayOfStringDemo
{
2
public
static
void
main(String[] args)
{
3
String[] anArray
=
{
"
String One
"
,
4
"
String Two
"
,
5
"
String Threee
"
6
}
;
7
for
(
int
i
=
0
; i
<
anArray.length; i
++
)
{
8
System.out.println(anArray[i].toLowerCase());
9
}
10
}
11
}
12
1
import
java.lang.Math;
2
3
public
class
exp
{
4
public
static
void
main(String[] args)
{
5
double
x
=
11.635
;
6
double
y
=
2.76
;
7
System.out.println(
"
the value of e is
"
+
Math.E);
8
System.out.println(
"
exp(
"
+
x
+
"
) is
"
+
Math.exp(x));
9
System.out.println(
"
log(
"
+
x
+
"
) is
"
+
Math.log(x));
10
11
System.out.println(
"
pow(
"
+
x
+
"
,
"
+
y
+
"
) is
"
+
Math.pow(x,y));
12
System.out.println(
"
sqrt(
"
+
x
+
"
) is
"
+
Math.sqrt(x));
13
}
14
}
15
1
public
class
Trig
{
2
public
static
void
main(String[] args)
{
3
double
degree
=
45.0
;
4
double
redians
=
Math.toDegrees(degree);
5
System.out.println(
"
the value of pi is
"
+
Math.PI);
6
System.out.println(
"
the sin of
"
+
degree
+
"
is
"
7
+
Math.sin(degree));
8
System.out.println(
"
the cos of
"
+
degree
+
"
is
"
9
+
Math.cos(degree));
10
System.out.println(
"
the tan of
"
+
degree
+
"
is
"
11
+
Math.tan(degree));
12
System.out.println(
"
the arc tan of
"
+
redians
+
"
is
"
13
+
Math.atan(redians));
14
System.out.println(
"
the arc sin of
"
+
redians
+
"
is
"
15
+
Math.asin(redians));
16
}
17
}
18
发点思考:
1,按照书上面一个个敲代码是很有好处的。手写代码也是不错的。原始的方法或许更加有效果!
2.java的几点,从这个上面看来。1,java中,一个数组,可以是对象数组,就是说它的内容是一个对象,这样的,它的创建不仅要new,其中的内容也要new,否则没有创建对象哪里来的那些内容呢?
就像是内置类型一样,那些new处理的当然也是数组,所以是Integer[5]来表示数组。
而要是赋值或者初始化的话,就是用的括号,表示调用构造函数,因为类和构造函数是同名的。这次就完成了上面的内容。。
posted on 2009-12-20 21:16
deercoder
阅读(779)
评论(0)
编辑
收藏
引用
所属分类:
JAVA
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
Java多维数组详解[转载]
发Java手写代码。
java中一个很简单的输出显示
【转载】NetBeans生成Applet的实例方法
JAVA学习(一)
JAVA初学释疑(待续)
网站导航:
博客园
IT新闻
BlogJava
博问
Chat2DB
管理
坚持记录,笔耕不辍,笔记是最好的学习方法!
<
2011年9月
>
日
一
二
三
四
五
六
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(12)
给我留言
查看公开留言
查看私人留言
随笔分类
(87)
ACM(1)
Android(4)
C++(7)
CTeX和LateX(1)
Git(3)
Java(4)
MFC程序设计入门(8)
OpenCV(1)
Python(3)
Shell/Bash(1)
SQL(1)
Unix/Linux(23)
Vim(3)
大学公开课(3)
读书(4)
环境配置(1)
生活感悟/日记(18)
图像识别算法及原理(1)
随笔档案
(145)
2014年12月 (1)
2013年3月 (1)
2012年7月 (2)
2012年6月 (5)
2012年5月 (2)
2012年4月 (2)
2011年12月 (1)
2011年11月 (2)
2011年10月 (8)
2011年9月 (2)
2011年8月 (4)
2011年6月 (2)
2011年5月 (5)
2011年4月 (3)
2011年3月 (3)
2010年6月 (5)
2010年5月 (5)
2010年4月 (3)
2010年3月 (16)
2010年2月 (56)
2010年1月 (11)
2009年12月 (2)
2009年11月 (3)
2009年10月 (1)
文章分类
(70)
C/C++(14)
JAVA(6)
Linux/Unix(6)
MFC(5)
OpenCV / OpenGL(6)
编程体会和收获(3)
常见编译器错误解决办法(5)
深入理解计算机系统(2)
生活的体会和感悟(5)
实习/读研(1)
数据结构和算法分析(9)
杂谈(8)
文章档案
(70)
2011年11月 (1)
2011年10月 (1)
2010年3月 (8)
2010年2月 (2)
2010年1月 (3)
2009年12月 (21)
2009年11月 (26)
2009年10月 (5)
2009年9月 (3)
相册
computer picture
ACM与算法比赛
Google Code Jam
Top Coder
北大ACM
杭电ACM
LaTex和Tex学习
LaTex and Tex
Tex,LaTex,CTex学习
电子书下载
不错的电子书免注册下载
杂志下载(经济学人等)
联系方式
我的豆瓣主页
学习论坛
C++编程
VC知识库
超多C/C++资料和源码下载
科研小木虫
提问必答网站(牛人辈出啊!)
英语网站(长期学习)
New York Times
华尔街日报
记单词,捐大米
经济学英文网
普特网站
普特英语应用(有趣的学习)
译言网|译文库
中国日报
源码网站
codeproject
google代码搜索
programersheaven
sourceforge
程序员联合开发网
最新随笔
1. 此博客停止更新
2. Adboe Reader提示中文字体有问题
3. Python字符串换行处理
4. 如何转换^M行末符号
5. 斯坦福大学开放课程--编程范式(四)
搜索
积分与排名
积分 - 900014
排名 - 15
最新随笔
1. 此博客停止更新
2. Adboe Reader提示中文字体有问题
3. Python字符串换行处理
4. 如何转换^M行末符号
5. 斯坦福大学开放课程--编程范式(四)
最新评论
1. re: Git Stash用法[未登录]
@陈梓瀚(vczh)
人称轮带逛!!!
--q
2. re: Git Stash用法
@Loaden
这个B装的好
--doubi
3. re: Chrome神器Vimium快捷键学习记录
哦啦啦啦啦
--阿里河
4. re: Chrome神器Vimium快捷键学习记录
希望能添加更新后的功能翻译
--Vi.Ci
5. re: Chrome神器Vimium快捷键学习记录
@coolbit
谢谢,学会了
--xin
阅读排行榜
1. Git Stash用法(300455)
2. Chrome神器Vimium快捷键学习记录(67434)
3. GitHub使用简介(35327)
4. Ubuntu下硬盘的自动挂载(23718)
5. Ubuntu更新包管理器失败:Requires installation of untrusted packages问题解决(18443)
评论排行榜
1. 【欢迎各位留言讨论】C++中运算符New的一个疑问【新的问题!】【各位继续关注讨论啊!】(23)
2. Git Stash用法(21)
3. Chrome神器Vimium快捷键学习记录(19)
4. C++友元的一个问题-----------由派生类访问基类的私有成员(10)
5. OpenCV学习笔记(一)(7)