22讲通关Go语言,网盘下载

download:22讲通关Go语言

 

package car;   public class Car {     String color;     int number;           void run(){         System.out.println(color+"::"+number);     } }   class carDemo {     public static void main(String[] args)     {         Car c = new Car();               show(c);     }     /*      * 封装功能      * Car c = new Car();      * Car c1 = new Car();      * */     public static void show(Car cc)     {         cc.color = "red";         cc.number = 4;         cc.run();               } }
 
上一篇:【报告分享】2021上半年美妆行业社媒营销报告-CC数据 (附下载)


下一篇:ORACLE SQL EXISTS/NOT EXISTS扩充