Archiv verlassen und diese Seite im Standarddesign anzeigen : logische Operatoren
Gibts bei Bascom auch logische Operatoren wie AND und OR?
Kann mir eigentlich kaum vorstellen, dass es sie nicht gibt, finde aber die richtige Syntax nicht.
AND, OR, &&, &, ||, | versteht Bascom irgendwie nicht und in der Hilfe finde ich auch nichts.
Hallo,
steht in den "Language Fundamentals" der Hilfe.
**********************************************
Logical Operators
Logical operators perform tests on relations, bit manipulations, or Boolean operators.
There four operators in BASCOM are :
Operator Meaning
NOT Logical complement
AND Conjunction
OR Disjunction
XOR Exclusive or
It is possible to use logical operators to test bytes for a particular bit pattern.
For example the AND operator can be used to mask all but one of the bits
of a status byte, while OR can be used to merge two bytes to create a particular binary value.
Example
A = 63 And 19
PRINT A
A = 10 Or 9
PRINT A
Output
19
11
***********************************************
Hoffe das hilft Dir.
Powered by vBulletin® Version 4.2.5 Copyright ©2024 Adduco Digital e.K. und vBulletin Solutions, Inc. Alle Rechte vorbehalten.