代码搜索:Operators
找到约 8,993 项符合「Operators」的源代码
代码结果 8,993
www.eeworm.com/read/243682/12924467
txt dcl.txt
/L20"Digital Command Language" Line Comment = ! Nocase File Extensions = COM com
/Function String = "%^$^([A-Z,a-z]*^):$"
/Function String 1 = "%^$ +^([A-Z,a-z]*^):$"
/Delimiters = ~!%^&()+=|\{}[]:
www.eeworm.com/read/243682/12925313
txt spin.txt
/L20"Spin" Line Comment Num = 1# Block Comment On = /* Block Comment Off = */ Escape Char = \ File Extensions = SPIN SPN
/Delimiters = ~@%^&*()|\/{}[];"' , .
/C1"Types"
bit bool byte
chan
int
l
www.eeworm.com/read/243682/12925813
txt websphere_mq_config.txt
/L10"MQCommand" Line Comment = * Nocase String Chars = "' File Extensions = MQC
/Delimiters = () '
/Indent Strings = "+"
/Function String = "%^([a-zA-Z_0-9^[^]*]+^)[ ^t]+([^p*&, ^t^[^]a-zA-Z_0-9.
www.eeworm.com/read/243682/12925829
txt vospl1.txt
/L20"VOS PL/1" Line Comment = // Block Comment On = /* Block Comment Off = */ Escape Char = \ String Chars = "' File Extensions = PL1 pl1
/Delimiters = ~!@^&*()-+=|\/{}[]:;"' , .?
/Function String
www.eeworm.com/read/325758/13186087
cpp asresource.cpp
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* ASResource.cpp
*
* This file is a part of "Artistic Style" - an indentation and
* reformatting tool for C, C
www.eeworm.com/read/139048/13191344
txt matlab运算符.txt
Operators and special characters.
Arithmetic operators.
plus - Plus +
uplus - Unary plus +
minus - Mi
www.eeworm.com/read/325023/13230966
java casting.java
//: operators/Casting.java
public class Casting {
public static void main(String[] args) {
int i = 200;
long lng = (long)i;
lng = i; // "Widening," so cast not really required
www.eeworm.com/read/325023/13230984
java overflow.java
//: operators/Overflow.java
// Surprise! Java lets you overflow.
public class Overflow {
public static void main(String[] args) {
int big = Integer.MAX_VALUE;
System.out.println("big
www.eeworm.com/read/325023/13230999
java equalsmethod2.java
//: operators/EqualsMethod2.java
// Default equals() does not compare contents.
class Value {
int i;
}
public class EqualsMethod2 {
public static void main(String[] args) {
Value v1