SWU-Object_Oriented_Programming_in_Java
本仓库收集了西南大学《面向对象高级编程》课程中的笔记,学习资料等
This repository collects the notes and learning materials in the course "Object-Oriented Advanced Programming" of Southwest University
欢迎大家下载笔记,学习资料,辅助自己在本课程中的学习
仓库中若出现版权问题请联系仓库本人
If there is a copyright issue in the repositories, please contact the me
本仓库内容会持续更新
git clone https://github.com/Qiaoqi-Zhuyan/SWU-Object_Oriented_Programming_in_Java.git
2022-11-29 更新基础语法部分1.pdf
2023-02-06 更新基础语法部分.pdf(有目录)
2023-02-06 更新设计模式.pdf
2023-02-07 更新Java核心技术.pdf
更正:
基础语法.pdf里,
原文为:
Object o = new Object();
student b = (student)o;
改为:
Object o = new Object();
student b = (student)o;