Use "constructors" in a sentence

1. Schumacher's efforts helped Ferrari win the Constructors title in 1999.

Những nỗ lực của Schumacher đã giúp Ferrari giành danh hiệu vô địch cho đội đua năm 1999.

2. Some languages take consideration of some special types of constructors.

Một vài ngôn ngữ còn xem xét một số loại hàm tạo đặc biệt.

3. Constructors often have the same name as the declaring class.

Hàm tạo thường có tên giống với lớp được khai báo.

4. In D, destructors are declared with name ~this() (whereas constructors are declared with this()).

Trong D, hàm hủy được khai báo với tên ~this() (trong khi hàm tạo được khai báo với this()).

5. In class-based programming, objects are created from classes by subroutines called constructors, and destroyed by destructors.

Trong lập trình dựa trên lớp, đối tượng được tạo ra từ lớp bởi chương trình con được gọi là hàm tạo, và bị hủy bởi hàm hủy.

6. In the World Constructors' Championship, Mercedes won their fourth consecutive title at the 2017 United States Grand Prix and finished with 668 points.

Ở nội dung Đội đua vô địch thế giới, Mercedes đã giành danh hiệu thứ tư liên tiếp tại Hoa Kỳ và kết thúc với 668 điểm.

7. If a constructor does not take any data arguments, it is nullary. -- nullary type constructor with two nullary data constructors data Bool = False | True -- non-nullary type constructor with one non-nullary data constructor data Point a = Point a a -- non-nullary type constructor with... data Maybe a = Nothing -- ...nullary data constructor | Just a -- ...unary data constructor

Nếu một hàm tạo mà không có bất kì đối số nào, thì nó là rỗng. -- nullary type constructor with two nullary data constructors data Bool = False | True -- non-nullary type constructor with one non-nullary data constructor data Point a = Point a a -- non-nullary type constructor with... data Maybe a = Nothing --...nullary data constructor | Just a --...unary data constructor