摘要:
初探open3d 代码 import open3d as o3d import numpy as np print("Load a ply point cloud, print it, and render it") pcd=o3d.io.read_point_cloud("C:/Users/332 阅读全文
摘要:
自定义异常 课堂截图 代码 自定义异常 package com.exception.demo02; public class Test { //可能会存在异常的方法 static void test(int a) throws MyException{ System.out.println("传递的 阅读全文
摘要:
捕获和抛出异常 五个关键字 try catch finally throw throws 代码 package com.exception; public class test { public static void main(String[] args) { new test().test(1, 阅读全文
摘要:
内部类 成员内部类 代码 Outer package com.oop.demo10; public class Outer { private int id=10; public void out() { System.out.println("这是外部类的方法"); } public class 阅读全文
摘要:
多态 课堂笔记 代码 package com.oop; import com.oop.demo06.Person; import com.oop.demo06.Student; public class Application { public static void main(String[] a 阅读全文