Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7430401
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:08:03+00:00 2026-05-29T09:08:03+00:00

I want to create a subclass of Date. A normal, healthy, young rubyist, unscarred

  • 0

I want to create a subclass of Date.

A normal, healthy, young rubyist, unscarred by the idiosyncrasy of Date’s implementation would go about this in the following manner:

require 'date'

class MyDate < Date

  def initialize(year, month, day)
    @original_month = month
    @original_day = day

    # Christmas comes early!
    super(year, 12, 25)
  end

end

And proceed to use it in the most expected manner…

require 'my_date'

mdt = MyDate.new(2012, 1, 28)

puts mdt.to_s

… only to be double-crossed by the fact, that the Date::new method is actually an alias to Date::civil, which doesn’t ever call initialize. In this case, the last piece of code prints “2012-01-28” instead of the expected “2012-12-25”.

Dear Ruby-community, wtf is this?

Is there some very good reason for aliasing new, so that it ignores initialize, and as a result, any common sense and regard for the client’s programmer’s mental health?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T09:08:04+00:00Added an answer on May 29, 2026 at 9:08 am

    You define initialize, but you create the new instance with new. new returns a new instance of the class, not the result of initialize.

    You may do:

    require 'date'
    
    class MyDate < Date
    
      def self.new(year, month, day)
        @original_month = month
        @original_day = day
    
        # Christmas comes early!
        super(year, 12, 25)
      end
    
    end
    
    mdt = MyDate.new(2012, 1, 28)
    
    puts mdt.to_s
    

    Remark:
    @original_month and @original_day are not available in this solution. The following solution extends Date, so you can access the original month and day. For normal dates, the values will be nil.

    require 'date'
    
    class Date 
      attr_accessor :original_month 
      attr_accessor :original_day
    end  
    
    class MyDate < Date
    
      def self.new(year, month, day)
    
        # Christmas comes early!
        date = super(year, 12, 25)
        date.original_month = month
        date.original_day = day
        date
      end
    
    end
    
    mdt = MyDate.new(2012, 1, 28)
    
    puts mdt.to_s
    puts mdt.original_month
    

    But I would recommend:

    require 'date'
    
    class MyDate < Date
    
      def self.create(year, month, day)
        @original_month = month
        @original_day = day
    
        # Christmas comes early!
        new(year, 12, 25)
      end
    
    end
    
    mdt = MyDate.create(2012, 1, 28)
    
    puts mdt.to_s
    

    or

    require 'date'
    
    class Date
    
      def this_year_christmas
        # Christmas comes early!
        self.class.new(year, 12, 28)
      end
    
    end
    
    mdt = Date.new(2012, 1, 28).this_year_christmas
    
    puts mdt.to_s
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

According to this answer I want to create my own subclass of Array QArray
i want to create a subclass of NSWindow . this subclass needs to initialize
i want create Dynamic Slideshow in Jquery i'm Write this code var ctx =
I want to create a login dialog by inheriting QDialog. I put in subclass
I want to create a generic class, whose builder would not return an instance
I want to create a subclass of UINavigationController which always starts with the same
Possible Duplicate: Java Generics: Cannot cast List<SubClass> to List<SuperClass>? I want to create function
I want to create a custom tableViewCell programmatically. This is what I do: Creating
I want to create a subclass of UITableView or UIScrollView that will have some
This is the scenario. I have a Layer class which I want to create

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.