Giter Club home page Giter Club logo

Comments (7)

ebezault avatar ebezault commented on June 30, 2024

Do you mean the size of the object in memory?

from gobo.

mw66 avatar mw66 commented on June 30, 2024

No, the object's address, in C / C++, for struct Object object I want &object.

from gobo.

ebezault avatar ebezault commented on June 30, 2024

Try that:

	f
		local
			s: STRING
		do
			s := "gobo"
			print ($s)
		end

Note that when compiled with ISE Eiffel, the garbage collector may move objects in memory.

from gobo.

mw66 avatar mw66 commented on June 30, 2024

print ? Any IO class need to be inherited from?

tried:

io.put_string  ($(zone.implementation))
io.put_integer ($(zone.implementation))

ISE eiffel all reported: Syntax error.

BTW, any io.put_hex_integer method?

from gobo.

ebezault avatar ebezault commented on June 30, 2024

print comes from ANY:

	print (o: detachable ANY)
			-- Write terse external representation of `o'
			-- on standard output.
		local
			s: READABLE_STRING
		do
			if attached o then
				s := o.out
				if attached {READABLE_STRING_32} s as s32 then
					io.put_string_32 (s32)
				elseif attached {READABLE_STRING_8} s as s8 then
					io.put_string (s8)
				else
					io.put_string_32 (s.as_string_32)
				end
			end
		ensure
			instance_free: class
		end

$s is of type POINTER, so io.put_string or io.put_integer will not work. There is no io.put_hex_integer as far as I know.

from gobo.

mw66 avatar mw66 commented on June 30, 2024

I can do print($zone), but cannot do print($(zone.implementation)) got Syntax error.

have to add local vars:

                        impl, impl2: EV_WIDGET_I

                        impl := zone.implementation
                        impl2 := zone.implementation_upper_zone
                        print($impl)
                        io.put_string("%N")
                        print($impl2)
                        io.put_string("%N")

Now, it works.

This syntax sucks.

from gobo.

ebezault avatar ebezault commented on June 30, 2024

I can do print($zone), but cannot do print($(zone.implementation)) got Syntax error.

It works with gec.

This syntax sucks.

You are not supposed to access object addresses in Eiffel in the first place. Eiffel is not C :-)

from gobo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.