代码搜索:cannot
找到约 7,468 项符合「cannot」的源代码
代码结果 7,468
www.eeworm.com/read/162614/5526551
f90 namelist_2.f90
! { dg-do compile }
! Check that variable with intent(in) cannot be a member of a namelist
subroutine namelist_2(x)
integer,intent(in) :: x
namelist /n/ x
read(*,n) ! { dg-error "is INTENT" "" }
www.eeworm.com/read/162614/5529381
c 20040203-3.c
/* PR/11658 The error message was quite mysterious for gcc up to 3.4.x */
/* { dg-options "-std=gnu89" } */
struct s { char c[1]; };
struct s f(void);
int bug_if(void) { if (f().c) return 1; else r
www.eeworm.com/read/173217/9666627
cpp 611.cpp
/*
611.CPP
了解继承关系
CopyRight by Feng. 2003/10 1997/10
*/
#include
class B
{
private: int b0;
protected: int b1;
public:
int b;
B (int n){ b0=n;b1=n+1;b=n+2;}
www.eeworm.com/read/366900/9793653
cpp staticmemberfunctions.cpp
//: C10:StaticMemberFunctions.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
class X {
int i;
www.eeworm.com/read/267657/11169901
c tcpclient.c
/* fpont 12/99 */
/* pont.net */
/* tcpClient.c */
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/334344/12609259
c tcpclient.c
/* fpont 12/99 */
/* pont.net */
/* tcpClient.c */
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/146694/12618376
cpp const02.cpp
//const02.cpp
#include
#include
int get_sum(const int,int);
void main()
{ int a=10,b=20;
cout