This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages) This article does not cite any sources. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: "Interface bloat" – news · newspapers · books · scholar · JSTOR (March 2009) (Learn how and when to remove this template message) This article provides insufficient context for those unfamiliar with the subject. Please help improve the article by providing more context for the reader. (April 2016) (Learn how and when to remove this template message) (Learn how and when to remove this template message)

In software design, interface bloat (also called fat interfaces by Bjarne Stroustrup and Refused Bequests by Martin Fowler) is when an interface incorporates too many operations on some data into an interface, only to find that most of the objects cannot perform the given operations.

Interface bloat is an example of an anti-pattern. One might consider using visitor pattern, Adapter Pattern, or interface segregation instead.