Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个课程,一个恒温器和一个加热器。关联是两个类之间的聚合。
现在,当我从类恒温器生成类加热器中的事件时,我得到一个 Java 空指针错误(运行时错误)。
我使用的代码是itsHeater.gen(new evHeaterOn()).
itsHeater.gen(new evHeaterOn())
聚合生成一个指针。除非您初始化该指针,否则它将指向空值。创建一个构建类来实例化您的实例并正确初始化指针。