代码搜索:operators
找到约 8,993 项符合「operators」的源代码
代码结果 8,993
www.eeworm.com/read/344239/11895377
java allops.java
//: operators/AllOps.java
// Tests all the operators on all the primitive data types
// to show which ones are accepted by the Java compiler.
public class AllOps {
// To accept the results of
www.eeworm.com/read/344239/11895381
java mathops.java
//: operators/MathOps.java
// Demonstrates the mathematical operators.
import java.util.*;
import static net.mindview.util.Print.*;
public class MathOps {
public static void main(String[] arg
www.eeworm.com/read/344239/11895384
java assignment.java
//: operators/Assignment.java
// Assignment with objects is a bit tricky.
import static net.mindview.util.Print.*;
class Tank {
int level;
}
public class Assignment {
public static voi
www.eeworm.com/read/344239/11895403
java hellodate.java
//: operators/HelloDate.java
import java.util.*;
import static net.mindview.util.Print.*;
public class HelloDate {
public static void main(String[] args) {
print("Hello, it's: ");
pr
www.eeworm.com/read/344239/11895407
java equalsmethod.java
//: operators/EqualsMethod.java
public class EqualsMethod {
public static void main(String[] args) {
Integer n1 = new Integer(47);
Integer n2 = new Integer(47);
System.out.println
www.eeworm.com/read/256129/12023429
h count.h
//INTERFACE TO COUNTER CLASS WITH THE OVERLOADED OPERATORS
//FILE COUNT.H
#include
class COUNTER
{
private :
unsigned int NUMBER;
public :
COUNTER()
{
NUMBER=0;
www.eeworm.com/read/255969/12042957
h count.h
//INTERFACE TO COUNTER CLASS WITH THE OVERLOADED OPERATORS
//FILE COUNT.H
#include
class COUNTER
{
private :
unsigned int NUMBER;
public :
COUNTER()
{
NUMBER=0;
www.eeworm.com/read/341867/12057593
def adwin.def
NAME ADWIN
DESCRIPTION 'AlertDriver for Windows Demo (c)1994 Logical Operators'
CODE PRELOAD MOVEABLE DISCARDABLE
DATA PRELOAD MOVEABLE MULTIPLE
HEAPSIZE
www.eeworm.com/read/255742/12061447
cpp mastermind.cpp
//-----------------------------------------------------------------------------
// mastermind
//-----------------------------------------------------------------------------
#include