代码搜索:Operators
找到约 8,993 项符合「Operators」的源代码
代码结果 8,993
www.eeworm.com/read/366702/2866434
c expr3.c
/* { dg-do compile } */
/* PR/18047 Test that operators have the right precedence. */
/* by bonzini@gnu.org */
#define test(lower, higher, a, b, c, d) \
test_(lower, higher, a, b, c, d, __LINE__)
www.eeworm.com/read/366702/2870853
c pic1.c
// { dg-do assemble }
// GROUPS passed operators
// pic file
// Message-Id:
// Subject: gcc-2.5.8 -fpic fails to compile extern const char static init
www.eeworm.com/read/366702/2876061
f90 use_7.f90
! { dg-do compile }
! Renaming of operators
module z
type myT
integer :: t
end type myT
interface operator(+)
module procedure sub2
end interface
contains
function sub2(x)
type(myT)
www.eeworm.com/read/366702/2883671
c operator-unary.c
/* { dg-do run } */
/* { dg-options "-std=gnu99" } */
/* C99 6.5.3 Unary operators & and *.
Based on the test from ../dfp/. */
extern void abort (void);
#define UNARY_OPERATOR(TYPE,SUFFIX) \
do
www.eeworm.com/read/252364/4408878
60ff8f459c92001b1480d697f94b239e
//: 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/252364/4409063
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/154890/5633336
h fixed_point.h
// Definitions and operators for fixed point math
//
// (C) 1999 Nicolas Pitre
#define FIXED_POINT_FRACBITS 24
#define FL2FIX( x, fracs ) ((int)((x)*(1
www.eeworm.com/read/133648/14031380
java autoinc.java
//: c03:AutoInc.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Demonstrates the ++ and -- operators.
public class AutoIn
www.eeworm.com/read/203062/15366774
h ovector.h
/*
* VECTOR.H
*
* Class definitions for vectors, Vector3 and Vector2. The Vector3 class is
* a 3-component Vector3 representation with all the usual operators. Vector2
* is an implementation fo
www.eeworm.com/read/113029/15472314
cpp fig08_03.cpp
// Fig. 8.3: fig08_03.cpp
// Overloading the stream-insertion and
// stream-extraction operators.
#include
using std::cout;
using std::cin;
using std::endl;
using std::ostream;
u