Translation of struct into Russian
Acronym
acr: structure
- The C program uses a struct to store player information.В программе на C используется структура для хранения информации об игроке.
Examples of struct in a sentence
He defined a struct to bundle the coordinates together.
Translations of "struct" in Context ordered by category and frequency
A class or struct furthermore permits the declaration of overloaded constructors and operators.
Более того, класс или структура допускают объявление перегруженных конструкторов экземпляров и операторов.
Each class, struct, or interface declaration creates a new declaration space.
Каждый класс, структура или интерфейс объявления создает новую область объявления.
A struct can be used as a nullable type and can be assigned a null value.
Структура может использоваться как тип, допускающий значение NULL, и ей можно назначить значение NULL.
The keyword struct tells the compiler that a structure template is being declared.
Ключевое слово struct сообщает компилятору, что объявляется структура.
struct: Examples and translations in context
In C#, a struct is like a lightweight class; it is a stack-allocated type that can implement interfaces but does not support inheritance.
В языке С структура похожа на облегченный класс: это тип, распределяемый в стеке, реализующий интерфейсы, но не поддерживающий наследование.
Because C# supports method overloading, a class or struct can contain multiple definitions of some method, provided each has a different signature.
Так как С поддерживает перегрузку методов, класс или структура могут содержать несколько определений какого-либо метода при условии того, что их сигнатуры отличаются.
There is a struct called a PyObject, which every other object in CPython uses.
Тут существует структура, которая называется PyObject, которой пользуются объекты, создаваемые в CPython.
No, a struct cannot inherit from another struct or class, and it cannot be the base of a class.
Структура не может быть унаследованной от другой структуры или класса и не может быть основой для других классов.
When a class or struct implements a particular interface, instances of that class or struct can be implicitly converted to that interface type.
Если класс или структура реализует конкретный интерфейс, экземпляры такого класса или такой структуры могут быть неявно преобразованы к типу заданного интерфейса.
Except for overloaded constructor declarations and static constructor declarations, a class or struct member declaration cannot introduce a member by the same name as the class or struct.
Исключая перегруженные объявления конструктора экземпляров и объявления статического конструктора, класс или структура не могут содержать объявление члена с одинаковым именем в классе или структуре.
See also: