代码搜索:visual basic
找到约 10,000 项符合「visual basic」的源代码
代码结果 10,000
www.eeworm.com/read/225531/4795503
basic-1
#!/bin/sh
# -*- perl -*-
: ${PERL=perl}
: ${srcdir=.}
case "$PERL" in
*'missing perl')
echo 1>&2 "$0: configure didn't find a usable version of Perl, so can't run this test"
exit 77
;;
esac
www.eeworm.com/read/225531/4795587
basic-1
#! /bin/sh
# Make sure stty can parse most of its options.
if test "$VERBOSE" = yes; then
set -x
stty --version
fi
# Make sure there's a tty on stdin.
. $srcdir/../input-tty
# The following lis
www.eeworm.com/read/225256/4796956
h basic.h
//
// This Program is provided by Duke University and the authors as a service to the
// research community. It is provided without cost or restrictions, except for the
// User's acknowledgement that
www.eeworm.com/read/225256/4796957
c basic.c
//
// This Program is provided by Duke University and the authors as a service to the
// research community. It is provided without cost or restrictions, except for the
// User's acknowledgement that
www.eeworm.com/read/221464/4831782
cpp basic.cpp
#include "basic.h"
namespace basic {
int C::static_value = 3;
const int C::const_static_value = 100;
}
www.eeworm.com/read/221464/4831789
pyste basic.pyste
Class('basic::C', 'basic.h')
Function('basic::call_f', 'basic.h')
Function('basic::get_static', 'basic.h')
Function('basic::get_value', 'basic.h')
www.eeworm.com/read/221464/4831800
h basic.h
#ifndef BASIC_H
#define BASIC_H
#include
namespace basic {
struct C
{
// test virtuallity
C(): value(1), const_value(0) {}
virtual int f(int x = 10)
{