1С 8.3 Новый Объект
Данные > Примеры кода 1С > 1С 8.3 Описание типов
Перейти в раздел примеры кода 1С 8.3:
Новый Объект в 1С 8.3:
// Возвращает новый объект переданного типа.
// Источник: https://github.com/SeiOkami/CollectionMethodsOneS/issues/20
//
// Параметры:
// Тип - Строка, Тип - Тип или имя типа
//
// Возвращаемое значение:
// Произвольный
//
// Примеры:
// Результат = НовыйОбъект("Структура");
// Результат = НовыйОбъект("УсловноеОформлениеКомпоновкиДанных");
// Результат = НовыйОбъект("HTTPОтвет");
//
Функция НовыйОбъект(Знач Тип) Экспорт
Типы = Неопределено;
Если ТипЗнч(Тип) = Тип("Тип") Тогда
Типы = Новый Массив; // Массив из Тип
Типы.Добавить(Тип);
Иначе
Типы = Тип;
КонецЕсли;
ОписаниеТипа = Новый ОписаниеТипов(Типы);
Возврат ОписаниеТипа.ПривестиЗначение();
КонецФункции
// MIT License
// Copyright (c) 2024 SeiOkami
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
// Источник: https://github.com/SeiOkami/CollectionMethodsOneS/issues/20
//
// Параметры:
// Тип - Строка, Тип - Тип или имя типа
//
// Возвращаемое значение:
// Произвольный
//
// Примеры:
// Результат = НовыйОбъект("Структура");
// Результат = НовыйОбъект("УсловноеОформлениеКомпоновкиДанных");
// Результат = НовыйОбъект("HTTPОтвет");
//
Функция НовыйОбъект(Знач Тип) Экспорт
Типы = Неопределено;
Если ТипЗнч(Тип) = Тип("Тип") Тогда
Типы = Новый Массив; // Массив из Тип
Типы.Добавить(Тип);
Иначе
Типы = Тип;
КонецЕсли;
ОписаниеТипа = Новый ОписаниеТипов(Типы);
Возврат ОписаниеТипа.ПривестиЗначение();
КонецФункции
// MIT License
// Copyright (c) 2024 SeiOkami
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
// (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0
комментарии
____________________
Перепечатка текста и фотографий разрешена при наличии прямой ссылки на источник