代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/419652/10848413
tra rtc.tra
*** Creating Trace Output File '..\obj\RTC.tra' Ok.
### Preparing for ADS-LD.
### Creating ADS-LD Command Line
### List of Objects: adding '"..\obj\cortexm3_macro.o"'
### List of Objects: adding '
www.eeworm.com/read/348767/10868170
tra uart.tra
*** Creating Trace Output File 'UART.tra' Ok.
### Preparing for ADS-LD.
### Creating ADS-LD Command Line
### List of Objects: adding '"startup.o"'
### List of Objects: adding '"uart.o"'
### ADS-L
www.eeworm.com/read/419130/10884907
lst temp.lst
C51 COMPILER V6.02 - SN: Eval Version
COPYRIGHT KEIL ELEKTRONIK GmbH 1987 - 1999
*** WARNING C182 IN LINE 252 OF F:\5000\JOP\洗车计费\C\2\MAIN.C: pointer to different objects
*** WARNING C182 IN LINE
www.eeworm.com/read/419119/10885532
tra tesh.tra
*** Creating Trace Output File 'tesh.tra' Ok.
### Preparing for ADS-LD.
### Creating ADS-LD Command Line
### List of Objects: adding '"startup.o"'
### List of Objects: adding '"main.o"'
### ADS-L
www.eeworm.com/read/418957/10890352
tra bs1084.tra
*** Creating Trace Output File 'bs1084.tra' Ok.
### Preparing for ADS-LD.
### Creating ADS-LD Command Line
### List of Objects: adding '"main.o"'
### List of Objects: adding '"ltc2600.o"'
### Lis
www.eeworm.com/read/418952/10890576
tra bs1150s.tra
*** Creating Trace Output File 'BS1150s.tra' Ok.
### Preparing for ADS-LD.
### Creating ADS-LD Command Line
### List of Objects: adding '"startup.o"'
### List of Objects: adding '"main.o"'
### Li
www.eeworm.com/read/273406/10918145
cpp swapdemo.cpp
// Swap coordinates -- C++ 版本
#include
using namespace std;
class Coord {
public:
int x;
int y;
};
// Swap contents of two Coord objects.
void swap(Coord &a, Coord &b) {
www.eeworm.com/read/418587/10939858
makefile
CC=gcc
RM=rm -f
CFLAGS=-ggdb -O3 -W -Wall
C_SOURCES=alac.c \
demux.c \
main.c \
stream.c \
wavwriter.c
OBJECTS=$(C_SOURCES:.c=.o)
alac: $(OBJECTS)
$(CC) -o