In drupal 8 you can get current logged in users info by using currentUser() method.
If you want to use it in module file or other than a class you can call this method like below
$currentAccount = \Drupal::currentUser();
In class files inside class you can use
$currentAccount = $this->currentUser();
- To get User ID
$currentAccount->id();
- To get User Name
$currentAccount->getUsername();