История страницы
"Xor"
...
Группа действий: Операторы
Оператор логического исключения, который возвращает значение True, если только один операнд имеет значение True, иначе - False.
Настройки
...
Свойство
...
Англ. наименование
...
Описание
...
Тип
...
Пример заполнения
...
Обязательность заполнения поля
...
Параметры
...
Exclusive disjunction Version 5 (Java)
Action group: Operators
...
Description
A logical exception operator that returns True if only one operand is True, otherwise it returns False.
Action icon
Settings of parameters
Property | Description | Type | Filling example | Mandatory field |
Parameters | ||||
First operand of boolean type | First operand of boolean type | Robin.Boolean | true | Yes |
Second operand of boolean type | Second operand of boolean type | Robin.Boolean | true | Yes |
Results | ||||
Result | Result variable, true - if only one operand is true, false - otherwise | Robin.Boolean | true |
Special conditions of use
None.
Example of use
Task
There is a "Logical variable 1" with value = true and "Logical variable 2" with value = false. It is required to check the expression Logical variable 1=True OR Logical variable 2=True. If the result is positive, display a dialog box with a message - true, if the result is negative, the message is false.
Solution
Use the actions "Excluding disjunction
Особые условия использования
Отсутствуют.
Пример использования
Задача: существует "Logical variable 1" со значением = true и "Logical variable 2" со значением = false. Требуется проверить выражение Logical variable 1=Истина ИЛИ Logical variable 2=Истина. При положительном результате вывести диалоговое окно с сообщением - верно, при отрицательном результате сообщение - неверно.
...
", "If", "Show message".
Реализация:
Implementation
- Assemble a robot scheme consisting of actionsСобрать схему робота, состоящего из действий:
- Создать переменную с типом логический Create a variable with type logical "Logical variable 3" для записи в нее результата действия "Exclusive disjunctio"3" to record the result of action "Exclusive disjunction" into it.
Перетащить действие - Move the "Exclusive disjunctio" на рабочую область и настроить его параметры. disjunction" action to the workspace and set its parameters
- Перетащить действие Move the "If" на рабочую область и указать в параметре действия action to the workspace and set the action parameter to "Logical variable 33".
- В ветвь In the "True" добавить действие branch, add the "Show message" и настроить его параметрыaction and set its parameters.
В ветвь - In the "False" добавить действие branch, add the "Show message" и настроить его параметрыaction and set its parameters.
- Запустить робота по кнопке "Запуск" и верхней панели.
Результат: сравнение значений переменных выполнено успешно
- Start the robot using the "Start" button and the top panel.
Result
The comparison of variable values has been performed successfully.
A dialog box with the result is displayed.отображено диалоговое окно с результатом