I have a problem calling the default constructor from other in c++. In Java was something like this:
class Book {
  static private int i;
  private String s;
  public Book() {
    i++;
  }
  public Book(String s) {
    this();
    this.s = s;
  }
}
 
     
     
    