代码搜索:Operators
找到约 8,993 项符合「Operators」的源代码
代码结果 8,993
www.eeworm.com/read/355030/10300442
cpp mathops.cpp
//: C03:Mathops.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Mathematical operators
#include
www.eeworm.com/read/279234/10452533
pl fig04_07.pl
#!/usr/bin/perl
# Fig. 4.7: fig04_07.pl
# Demonstrating the qw and .. operators.
@array = qw( this is an array of strings );
print "@array\n\n";
@array2 = ( 1 .. 5 );
print "Value\tRunning T
www.eeworm.com/read/352317/10563957
cpp test_kdtree.cpp
#define KDTREE_DEFINE_OSTREAM_OPERATORS
#include
#include
#include
struct triplet {
typedef int value_type;
inline value_type operator[](size_t const
www.eeworm.com/read/158966/10706616
cpp boolean.cpp
//: C03:Boolean.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Relational and logical operators
www.eeworm.com/read/158966/10706646
cpp mathops.cpp
//: C03:Mathops.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Mathematical operators
#include
www.eeworm.com/read/271450/10994220
cpp unary.cpp
//: C12:Unary.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Overloading unary operators
www.eeworm.com/read/271450/10994236
cpp binary.cpp
//: C12:Binary.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Overloading binary operators
www.eeworm.com/read/271450/10994322
cpp mathops.cpp
//: C03:Mathops.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Mathematical operators
#i
www.eeworm.com/read/332978/7141818
java literals.java
//: operators/Literals.java
import static net.mindview.util.Print.*;
public class Literals {
public static void main(String[] args) {
int i1 = 0x2f; // Hexadecimal (lowercase)
print("