代码搜索:Language
找到约 10,000 项符合「Language」的源代码
代码结果 10,000
www.eeworm.com/read/332970/12714573
java stringbufferinsert.java
public class StringBufferInsert{
public static void main(String args[]){
StringBuffer strBuff=new StringBuffer("Java Language!");
strBuff.insert(0,1);
strBuff.insert(1,'、');
strBuff.insert(2, " I
www.eeworm.com/read/246621/12716915
nib classes.nib
{
IBClasses = (
{
CLASS = AppController;
LANGUAGE = ObjC;
OUTLETS = {textView = NSTextView; };
SUPERCLASS = NSObject;
},
www.eeworm.com/read/145479/12720292
loc callsummary.loc
/**
*
* @brief Definitions of languages for CallSummary application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
#ifdef LANGUAGE_01
#include "CallSummary.l01"
#endif // #ifde
www.eeworm.com/read/332813/12726367
str example.str
// String language example
a = "The quick ";
b = "brown fox ";
s = a + b;
print s;
input c;
if (c == "jumps") // if .. then .. else
s = s + c;
else { // Compound statement