You use :: to access static methods, and -> to access instance methods.
If you have DB class, you can have DB object reference as a property in user class:
public $db;
You instantiate the DB object in the user class constructor:
$this->db = new DB();
But, you don't want to have multiple connections to the datebase,
so you can use design pattern called singleton.
In short, you have only one DB object and you don't have to pass it from one method to another.
There are other options, it is just one of them for DB object.
Read more about singleton design pattern, and patterns in general.
If you have any questions you can ask.
Also check PDO, it's probably better than building your own DB class:
http://il.php.net/manual/en/book.pdo.php