Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
341 views

Advantages of CLOS over other class-based OO systems

I've come across claims that Common Lisp Object System (CLOS) is superior to traditional (class-based) Object-Oriented systems. Wikipedia entry for CLOS mentions differences between the two approaches ...
7
votes
1answer
420 views

Make clos objects printable in lisp

If you want to make CLOS objects in common lisp printable (print readably), how do you go about doing this without using anything but print and read.
6
votes
2answers
113 views

Lisp: How to override default string representation for CLOS class?

In Common Lisp, how can I override the default string representation of a CLOS class so that calls to format or princ will print something intelligible, even when objects of that class are embedded ...
5
votes
1answer
101 views

Using Common Lisp CLOS objects as keys in a hashtable?

I'd like to use Common Lisp CLOS objects as keys in a hashtable. I thought it would be as simple as this: (defclass my-class () ((a :accessor a :initarg a))) (defun my-class= (my-instance-1 ...
5
votes
1answer
142 views

How to write (simple) macro?

I need to write a macro (with-hooks (monster method who what) &body body) for a game I'm writing. Monster is a CLOS object, method and who are strings and what is a function (#' notation). The ...
5
votes
2answers
346 views

When is an initform used?

I'm forming a class for some work on molecular dynamics as follows: (defclass %atom (particle) ((name :initarg :name :initform (error "Every atom in the system must have a name!")) (mass ...
5
votes
5answers
382 views

Trying to learn: Object Reorientation, and generic functions in LISP!

im reading Practical common Lisp as a result of another question. I just read chapter 16 and 17 where you can find how LISP manages objects. But after a couple of years of thinking how Java manages ...
4
votes
2answers
191 views

lisp: How to create temporary method specialization within a scope

In Common lisp: Redefine an existing function within a scope? the OP asked for something similar. But I want to create a method specializer, not a function. Essentially suppose that a method is ...
4
votes
1answer
135 views

Test if a class is a subclass of another class in common lisp

How do I see if one CLOS class is a subclass of another CLOS class?
4
votes
3answers
231 views

CLOS like object model for PHP

I have returned to php development from Moose and I really miss CLOS like object model for php. Is there some kind of syntaxtic sugar which would allow me to write less code in php when dealing with ...
3
votes
2answers
92 views

Order of (:before/:after) method invocation in CLOS?

I need some help understanding the order of execution for the following code. I create an instance of pie, using the following: (cook (make-instance 'pie)) I know lisp executes functions from most ...
3
votes
1answer
76 views

Is it possible to dynamically add one more super class in existing class

In Common-Lisp CLOS Is it possible to dynamically add one more super class in existing class. Update: I wanted to defined defassoc kind of macro that will associated some behaviour with ...
3
votes
1answer
235 views

cross-package defgeneric/defmethod in Common Lisp?

What is the right way to define a generic in package A and to provide a method for this generic in package B in CLOS? Thank you in advance! Example: (defpackage :common (:use :cl)) (in-package ...
2
votes
2answers
77 views

GNU clisp: suppressing warning message about no-applicable-method

This code works as I want, except for the warning message. In GNU Common Lisp, how do I suppress that message without suppressing other possible warning messages? 1 (defgeneric zang (x y) 2 ...
2
votes
2answers
116 views

Lisp: How can i get hold of the created instance inside initialize-instance :around method

I want to create an (:around qualified) specializer of initialize-instance for a class X that will first call-next-method and then will call make-instance of another class, supplying it with the ...
2
votes
2answers
447 views

Comparing Common Lisp with Gambit w.r.t their library access and object systems

I'm pretty intrigued by Gambit Scheme, in particular by its wide range of supported platforms, and its ability to put C code right in your Scheme source when needed. That said, it is a Scheme, which ...
2
votes
2answers
221 views

What POOP frameworks exist for Lisp and Scheme

What all nice POOP (Prototype-based Object-oriented Programming) Frameworks exists in Lisp and Scheme I know one * Sheeple But I did not find any other.
2
votes
2answers
193 views

Create a polynomial object from a number using change-class

I have written a polynomial class along the lines described in SICP 2.5.3 (except using defclass). I would like to be able to seamlessly add and multiply polynomials and regular numbers but I can't ...
2
votes
2answers
227 views

lisp file pointers in classes

I'm running up against a problem in understanding the CLOS way of handling file access within a class. In c++ I would be able to do this: class Foo { Foo (string filename); // opens the file ...
1
vote
2answers
93 views

Strange class precedence list in sbcl

In sbcl, *(sb-mop:class-precedence-list (find-class 'cons)) ==>(#<BUILT-IN-CLASS CONS> #<BUILT-IN-CLASS LIST> #<BUILT-IN-CLASS SEQUENCE> #<BUILT-IN-CLASS T>) Isn't it ...
1
vote
2answers
154 views

Problem with access of slots in Lisp (CLOS)

I have a Node class that has an 'element' slot which contains a list with numbers and one letter, for example: '(1 2 3 b 4 5 6) (defclass node () ((element :reader get-element :writer ...
1
vote
3answers
237 views

Initializing slots based on other slot values in Common Lisp Object System class definitions

In my class definition, I want to initialize one slot based on the value of another slot. Here is the sort of thing I would like to do: (defclass my-class () ((slot-1 :accessor my-class-slot-1 ...
1
vote
2answers
129 views

Change an editable-text value in Allegro CL

I'm trying to change the value of an Editable-Text control in Allegro CL (version 8.0.1) by clicking a Default-Button. I've read about (setf value) but haven't found any examples. The function I ...
-1
votes
1answer
87 views

Does CLOS is a weakness in Common Lisp? [closed]

What I want to mean is if CLOS is a bad practice to the Lisp functional programming way?