代码搜索:Operators
找到约 8,993 项符合「Operators」的源代码
代码结果 8,993
www.eeworm.com/read/140891/13054305
java allops.java
//: c03:AllOps.java
// Tests all the operators on all the primitive data types
// to show which ones are accepted by the Java compiler.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
//
www.eeworm.com/read/325838/13181940
cpp asformatter.cpp
/*
* Copyright (c) 1998,1999,2000,2001,2002 Tal Davidson. All rights reserved.
*
* ASFormatter.cpp
* by Tal Davidson (davidsont@bigfoot.com)
* This file is a part of "Artistic Style" - an in
www.eeworm.com/read/139063/13190136
h vlong.h
class vlong // very long integer - can be used like long
{
public:
// Standard arithmetic operators
friend vlong operator +( const vlong& x, const vlong& y );
friend vlong operator -( const vlon
www.eeworm.com/read/325683/13191121
java wordanalyze.java
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import javax.swing.*;
import javax.swing.table.*;
public class WordAnalyze extends JFrame{
ArrayList
www.eeworm.com/read/138758/13216545
java allops.java
//: c03:AllOps.java
// Tests all the operators on all the primitive data types
// to show which ones are accepted by the Java compiler.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
//
www.eeworm.com/read/325023/13230958
java precedence.java
//: operators/Precedence.java
public class Precedence {
public static void main(String[] args) {
int x = 1, y = 2, z = 3;
int a = x + y - 2/2 + z; // (1)
int b = x + (y
www.eeworm.com/read/325023/13230959
java stringoperators.java
//: operators/StringOperators.java
import static net.mindview.util.Print.*;
public class StringOperators {
public static void main(String[] args) {
int x = 0, y = 1, z = 2;
String s =
www.eeworm.com/read/325023/13230989
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/325023/13230993
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