本文主要是介绍JAVA初学基本简单的程序----适合初学者(二),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、类的定义:
package yangxin;
public class Person {
int sex;
int salary;
void employed()
{
System.out.println("Work state");
if(salary==0)
System.out.println("no job");
else
System.out.println("job");
}
}
class Test{
public static void main(String[] args)
{
Person ps=new Person();
ps.salary=300;
ps.employed();
ps.salary=0;
ps.employed();
}
}
2、求周长和面积
package yangxin;
import java.util.Scanner;
class Circle {
public static void mian(String[] args)
{
double r,L,S;
Scanner sc=new Scanner(System.in);
double r=sc.nextDouble();
double getL(){
L=2*Math.PI * r;
return L;
}
double getS(){
S=Math.PI * r *r;
return S;
}
}
}
3、求半径3.5的圆周长和圆的面积
package yangxin;
class TestCircle {
public static void main(String[] args) {
// TODO 自动生成的方法存根
Circle cc=new Circle();
cc.r=3.5;
System.out.println(cc.getL()+"\t\t"+cc.getS());
}
}
4、对象的引用
package yangxin;
class ReferenceTest {
public static void main(String[] args) {
// TODO 自动生成的方法存根
Person p1=new Person();
Person p2=new Person();
p1.salary=1;
p2.salary=2;
System.out.println(p1.salary + "\t" +p2.salary);
p1.salary=0;
System.out.println(p1.salary + "\t" +p2.salary);
}
}
5、静态变量和静态方法夫人运用
package yangxin;
class Abc {
static int num=0;
void count()
{
num++;
System.out.println("This is object "+ num);
}
public static void main(String[] args) {
// TODO 自动生成的方法存根
Abc a=new Abc();
Abc b=new Abc();
Abc c=new Abc();
a.count();
b.count();
c.count();
System.out.println(Abc.num);
}
}
6、静态方法
正三角形
package yangxin;
class Star {
static void print(char c,int n)
{
for(int i=0;i<n;i++)
{
System.out.print(c);
}
}
public static void main(String[] args) {
// TODO 自动生成的方法存根
for(int i=0;i<5;i++)
{
print(' ',10-i);
print('*',2*i+1);
System.out.println();
}
}
}
7、求前100个自然数的和;
求25!;
package yangxin;
class MyCal {
static int getSum(int n)
{
int sum=0;
for(int i=1;i<=n;i++)
{
sum+=i;
}
return sum;
}
static long getFac(int n)
{
long fac=1;
for(int i=1;i<=n;i++)
fac*=i;
return fac;
}
public static void main(String[] args)
{
System.out.println(MyCal.getSum(100)+"\t"+MyCal.getFac(10));
}
}
8、对象的初始化
package yangxin;
class Flower {
static int num=0;
Flower()
{
num++;
System.out.println(num+"朵花开了!");
}
public static void main(String[] args) {
// TODO 自动生成的方法存根
Flower a=new Flower();
Flower b=new Flower();
Flower c=new Flower();
}
}
9、构造类
package yangxin;
class CleverCircle {
double r;
CleverCircle(double x){
r=x;
}
double getL(){
return 2*r*Math.PI;
}
double getS(){
return Math.PI*r*r;
}
public static void main(String[] args) {
// TODO 自动生成的方法存根
CleverCircle cc=new CleverCircle(2);
System.out.println(cc.getL()+"\t\t"+cc.getS());
cc=new CleverCircle(3.5);
System.out.println(cc.getL()+"\t\t"+cc.getS());
}
}
10、构造方法的重载
package yangxin;
class NewFlower {
static int num=0;
NewFlower(){
num++;
System.out.println(num+"朵花儿开了!");
}
NewFlower(String color)
{
num++;
System.out.println(num+"朵花儿开了。。。。。。。是"+color+"花!");
}
public static void main(String[] args) {
// TODO 自动生成的方法存根
new NewFlower();
new NewFlower("红");
new NewFlower("蓝");
}
}
11.、成员方法的重载
package yangxin;
class TestOL {
int x;
void func()
{
System.out.println("no arg");
}
String func(int i)
{
return "arg is "+i;
}
void func(String s)
{
System.out.println(s);
}
public static void main(String[] args) {
// TODO 自动生成的方法存根
TestOL c=new TestOL();
c.func();
c.func(c.func(100));
}
}
12、This关键字
package yangxin;
class ThisTest {
int a;
ThisTest(int a)
{
this.a=a;
a++;
}
public static void main(String[] args) {
// TODO 自动生成的方法存根
System.out.println(new ThisTest(5).a);
}
}
这篇关于JAVA初学基本简单的程序----适合初学者(二)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!