在Course类中定义name和id用的是private,在编写course2.name = name时提示错误The left-hand side of an assignment must be a variable。
private不能直接通过实例来访问, 用public可以。