There are a couple of methods that you can use in Drupal 8 to make this check:
Use the isAuthenticated()
method on the user. For example, use the following code to determine the state of the current user:
$logged_in = \Drupal::currentUser()->isAuthenticated();
Use isAnonymous()
to determine if the user is anonymous:
\Drupal::currentUser()->isAnonymous();