• 封装更新


    import static org.junit.Assert.*;
    
    import org.junit.Test;
    
    
    public class FZTest {
    
        int z;
        @Test
        public void testJia() {
            FZ fz = new FZ();
            z = fz.jia(3, 1);
            assertEquals(4,z);
        }
        @Test(expected=ArithmeticException.class)
        public void testchu() {
            double b;
            FZ fz = new FZ();
            b = fz.Chu(3, 0);
            
        }
        @Test
        public void testjian() {
            
            FZ fz = new FZ();
            z = fz.jian(3, 0);
            assertEquals(3,z);
            
        }
        @Test
        public void testCheng() {
            
            FZ fz = new FZ();
            z = fz.Cheng(3, 0);
            assertEquals(0,z);
            
        }
    
    
    }

    抛出异常后

    import java.util.Random;
    
    
    public class FZ {
        private int a;
        private int b;
        int c;
        public int  jia(int a,int b)
        {
        
            System.out.println(""+a);
            System.out.println(""+b);
            c = a+b;
            System.out.println("a+"+"b"+"="+(a+b+"\n"));
            return c;
            
        }
        public int  jian(int a,int b)
        {
            
            System.out.println(""+a);
            System.out.println(""+b);
            c=a-b;
            System.out.println("a-"+"b"+"="+(a-b)+"\n");
            return c;
            
            
        }
        public int Cheng(int a,int b)
        {   
            System.out.println(""+a);
            System.out.println(""+b);
            c=a*b;
            System.out.println("a*"+"b"+"="+(a*b)+"\n");
            return c;
        }
        public double  Chu(int a,int b)
        {
            double c;
            c=(double) (Math.round((a/b)*100/100.0));
            System.out.println(""+a);
            System.out.println(""+b);
            if(b!=0)
                System.out.println("c=a/b="+(c)+"\n");
            else
                throw new ArithmeticException();
                System.out.println("分母不能为0!");
                  
                return c;
        }
    
        /**
         * @param args
         */
        public static void main(String[] args) {
            // TODO Auto-generated method stub
             FZ Jia=new FZ();
             Jia.jia(5, 3);
             FZ Jian=new FZ();
             Jian.jian(6,2);
             FZ cheng=new FZ();
             cheng.Cheng(6,5);
             FZ chu=new FZ();
             chu.Chu(3,0);
             
        }
    
    }
  • 相关阅读:
    树的递归
    《计算机存储与外设》 3二级存储器
    《计算机存储与外设》 2主存储器
    《码农翻身:用故事给技术加点料》阅读有感
    分析"傍富婆发财"
    《第22条军规》Catch-22
    《编译原理》4
    《编译原理》3
    《血酬定律》
    linux下netcore程序部署
  • 原文地址:https://www.cnblogs.com/xukan123/p/4488340.html
Copyright © 2020-2023  润新知