From the course: Programming Foundations: Object-Oriented Design

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Identifying the actors

Identifying the actors - Python Tutorial

From the course: Programming Foundations: Object-Oriented Design

Start my 1-month free trial

Identifying the actors

- Before you dive headfirst into writing use cases, it's good to spend a few minutes brainstorming possible actors. You're looking for anything that lives outside of your application, but interacts with it to accomplish some goal. - Sometimes identifying the actors is straightforward. If we were building a simple single player video game, then there could be just one actor, the player. - However, something like the space microwave that we're designing could have multiple people interacting with it to accomplish different goals. Thinking about their different job titles or departments can also prompt ideas for use case scenarios. As we're brainstorming, we'll use stick figures to represent each of the possible human actors for our application. - [Man] Well, the spaceship will have several astronauts on board that need to use the space microwave to eat, the mission commander, the pilot, and the flight engineer, and back on Earth, Mission Control will want to monitor the status of the…

Contents