Display Activities in Activity Subsystem
/**
- Displays the activities in the activity subsystem.
- This method iterates through the activities in the activity subsystem and prints each activity to the console.
- @throws IllegalStateException if the activity subsystem is not initialized
- @since GPT-3.5-Turbo */ public void displayActivitySubSystem() throws IllegalStateException { for (Activity a: activitySubSystem.activities) System.out.println(a); }
原文地址: https://www.cveoy.top/t/topic/UNt 著作权归作者所有。请勿转载和采集!