I am finding it very difficult to read the documentations

I am finding it very difficult to read the documentations from this website,

For example,I read about vectors and I did few beginners programs of the same, but on the reference site this is written.
My question is how should I learn to understand the references this deep? Also, I was almost kicked out of a forum because I asked something very stupid ( according to them).
Any help will be appreciated.

PS: I am reading c++ books and writing small programs everyday :) :) :)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  default (1)	
vector();
explicit vector (const allocator_type& alloc);
fill (2)	
explicit vector (size_type n, const allocator_type& alloc = allocator_type());
         vector (size_type n, const value_type& val,
                 const allocator_type& alloc = allocator_type());
range (3)	
template <class InputIterator>
  vector (InputIterator first, InputIterator last,
          const allocator_type& alloc = allocator_type());
copy (4)	
vector (const vector& x);
vector (const vector& x, const allocator_type& alloc);
move (5)	
vector (vector&& x);
vector (vector&& x, const allocator_type& alloc);
initializer list (6)	
vector (initializer_list<value_type> il,
       const allocator_type& alloc = allocator_type());
I would recommend the links JLBorges posted. Also nowadays you're not only limited to documentations. You may learn more off of a video tutorial on YouTube or a C++ programming book (which I'd recommend) than you would by reading an article.
Topic archived. No new replies allowed.